Fixed #4203 -- Noted that "blank" defaults to False in models. Thanks,
david@kazserve.org. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5166 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
4fddf43b81
commit
77ec8ae811
1
AUTHORS
1
AUTHORS
|
@ -50,6 +50,7 @@ answer newbie questions, and generally made Django that much better:
|
||||||
Fabrice Aneche <akh@nobugware.com>
|
Fabrice Aneche <akh@nobugware.com>
|
||||||
ant9000@netwise.it
|
ant9000@netwise.it
|
||||||
David Ascher <http://ascher.ca/>
|
David Ascher <http://ascher.ca/>
|
||||||
|
david@kazserve.org
|
||||||
Arthur <avandorp@gmail.com>
|
Arthur <avandorp@gmail.com>
|
||||||
axiak@mit.edu
|
axiak@mit.edu
|
||||||
Jiri Barton
|
Jiri Barton
|
||||||
|
|
|
@ -459,7 +459,7 @@ string, not ``NULL``.
|
||||||
``blank``
|
``blank``
|
||||||
~~~~~~~~~
|
~~~~~~~~~
|
||||||
|
|
||||||
If ``True``, the field is allowed to be blank.
|
If ``True``, the field is allowed to be blank. Default is ``False``.
|
||||||
|
|
||||||
Note that this is different than ``null``. ``null`` is purely
|
Note that this is different than ``null``. ``null`` is purely
|
||||||
database-related, whereas ``blank`` is validation-related. If a field has
|
database-related, whereas ``blank`` is validation-related. If a field has
|
||||||
|
|
Loading…
Reference in New Issue