Changeset 5560
- Timestamp:
- 06/30/07 15:58:36 (1 year ago)
- Files:
-
- django/trunk/docs/model-api.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/model-api.txt
r5519 r5560 494 494 495 495 .. note:: 496 Due to database limitations, when using the Oracle backend the497 ``null=True`` option will be coerced for string-based fields that can498 blank, and the value``NULL`` will be stored to denote the empty string.496 When using the Oracle database backend, the ``null=True`` option will 497 be coerced for string-based fields that can blank, and the value 498 ``NULL`` will be stored to denote the empty string. 499 499 500 500 ``blank`` … … 595 595 ~~~~~~~~~~~~~~~~~ 596 596 597 If this field is indexed, the name of the database tablespace to use for the 598 index. The default is the ``db_tablespace`` of the model, if any. If the 599 backend doesn't support tablespaces, this option is ignored. 597 **New in Django development version** 598 599 The name of the database tablespace to use for this field's index, if 600 indeed this field is indexed. The default is the ``db_tablespace`` of 601 the model, if any. If the backend doesn't support tablespaces, this 602 option is ignored. 600 603 601 604 ``default`` … … 1011 1014 ``db_tablespace`` 1012 1015 ----------------- 1016 1017 **New in Django development version** 1013 1018 1014 1019 The name of the database tablespace to use for the model. If the backend
