Ticket #10786: fields-10786.diff
File fields-10786.diff, 764 bytes (added by , 15 years ago) |
---|
-
docs/ref/models/fields.txt
53 53 have two possible values for "no data;" Django convention is to use the empty 54 54 string, not ``NULL``. 55 55 56 If you need to accept :attr:`~Field.null` values with :class:`BooleanField`, use 57 :class:`NullBooleanField` instead. 58 56 59 .. note:: 57 60 58 61 When using the Oracle database backend, the ``null=True`` option will be … … 306 309 307 310 A true/false field. 308 311 312 If you need to accept :attr:`~Field.null` values with :class:`BooleanField`, use 313 :class:`NullBooleanField` instead. 314 309 315 The admin represents this as a checkbox. 310 316 311 317 .. admonition:: MySQL users..