﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1043	DateField doesn't work with blank=True	wojtek@…	Adrian Holovaty	"I created the following model:
class Event(meta.Model):
    heading = meta.CharField(maxlength=256)    
    description = meta.TextField()
    added = meta.DateField(auto_now_add = True)
    remind = meta.DateField(blank = True)    
    file = meta.FileField(upload_to = MEDIA_ROOT, blank = True)

If I don't fill out the 'remind' field in the form - I get the following error:
ERROR: null value in column ""remind"" violates not-null constraint INSERT INTO ""crm_events"" (""heading"",""description"",""added"",""remind"",""file"") VALUES ('foo','bar','2005-12-12',NULL,'')

So apparently that column should be set to NOT null automagically."	defect	closed	Core (Other)		normal	invalid			Unreviewed	0	0	0	0	0	0
