Hi Ray,

You can set null=True on your DateField to allow null values in the
database. Foe example:

    thedate = models.DateField(null=True, blank=True)

Cheers,
Bryan


On 8/13/06, Rares Vernica <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a DateField with blank=True and after I complete and submit the
> form I get a Django error saying that DateField cannot be null?
>
> How can I set the DateField so that it can be empty, and eventually null
> in the DB?
>
> I don't like the idea of manually going and changing the DB schema.
>
> Thanks,
> Ray

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to