On 6/10/06, Justin <[EMAIL PROTECTED]> wrote:
> I toyed with the idea of a custom Manager but wanted to see first if
> Django already handled this scenerio "out of the box" and I was just
> missing it.

Yeah, Django covers it, you just need to add 'blank=True' as well; as
Luke pointed out, 'null' lets NULL values go into the DB, while
'blank' tells the admin and automatic manipulators that the field can
be left blank at initial input (the difference being that you might,
for example, have a field that can't be NULL but that you'll calculate
the value or fill in a default for it before saving if no value is
specified).

-- 
"May the forces of evil become confused on the way to your house."
  -- George Carlin

--~--~---------~--~----~------------~-------~--~----~
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