summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-08 03:20:49 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-08 03:20:49 +0000
commit77ec8ae811f0f9d6a55c570ee7c02c52e6e7bc8d (patch)
treedda3681645361fd547d46c2d42222c7c29f0d517
parent4fddf43b811f76613b03f9d6c1de5bfc44a901e7 (diff)
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
-rw-r--r--AUTHORS1
-rw-r--r--docs/model-api.txt2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index dfa7eb615a..4fd8540b2f 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -50,6 +50,7 @@ answer newbie questions, and generally made Django that much better:
Fabrice Aneche <akh@nobugware.com>
ant9000@netwise.it
David Ascher <http://ascher.ca/>
+ david@kazserve.org
Arthur <avandorp@gmail.com>
axiak@mit.edu
Jiri Barton
diff --git a/docs/model-api.txt b/docs/model-api.txt
index a14c469661..961269aebd 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -459,7 +459,7 @@ string, not ``NULL``.
``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
database-related, whereas ``blank`` is validation-related. If a field has