summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorIan Kelly <ian.g.kelly@gmail.com>2009-03-05 20:21:22 +0000
committerIan Kelly <ian.g.kelly@gmail.com>2009-03-05 20:21:22 +0000
commitad6ce1e6f99a6427a4c01a175d72f21cd28f816a (patch)
tree1fe438a2778b13a82085191128d1148ddfa39773 /docs/ref/models
parent7197a4dcb7de7085e04f1b4edfb31eacb7dd885c (diff)
Clarified documentation regarding Oracle's treatment of nulls and empty strings.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9976 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/fields.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 63018f6611..4643837841 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -54,8 +54,8 @@ string, not ``NULL``.
.. note::
When using the Oracle database backend, the ``null=True`` option will be
- coerced for string-based fields that can blank, and the value ``NULL`` will
- be stored to denote the empty string.
+ coerced for string-based fields that have the empty string as a possible
+ value, and the value ``NULL`` will be stored to denote the empty string.
``blank``
---------