Changeset 6879
- Timestamp:
- 12/04/07 00:13:56 (10 months ago)
- Files:
-
- django/trunk/docs/databases.txt (modified) (1 diff)
- django/trunk/docs/model-api.txt (modified) (1 diff)
- django/trunk/docs/settings.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/databases.txt
r6801 r6879 259 259 it would be stored in the model tablespace ``tables`` by default. 260 260 261 The settings.py file supports two additional options to specify 262 default values for the db_tablespace options. This is useful for 263 setting a tablespace for the Django internal apps and other 264 contributed applications. These options are ``DEFAULT_TABLESPACE`` 265 and ``DEFAULT_INDEX_TABLESPACE``. 261 **New in the Django development version:** Use the ``DEFAULT_TABLESPACE`` and 262 ``DEFAULT_INDEX_TABLESPACE`` settings to specify default values for the 263 db_tablespace options. These are useful for setting a tablespace for the 264 built-in Django apps and other applications whose code you cannot control. 266 265 267 266 Django does not create the tablespaces for you. Please refer to `Oracle's django/trunk/docs/model-api.txt
r6801 r6879 619 619 620 620 The name of the database tablespace to use for this field's index, if 621 indeedthis field is indexed. The default is the project's621 this field is indexed. The default is the project's 622 622 ``DEFAULT_INDEX_TABLESPACE`` setting, if set, or the ``db_tablespace`` 623 623 of the model, if any. If the backend doesn't support tablespaces, this django/trunk/docs/settings.txt
r6832 r6879 418 418 ------------------ 419 419 420 Default: ``''`` (Empty string) 421 422 Default tablespace to use for models that do not specify one, if the 420 **New in Django development version** 421 422 Default: ``''`` (Empty string) 423 424 Default tablespace to use for models that don't specify one, if the 423 425 backend supports it. 424 426 … … 426 428 ------------------------ 427 429 428 Default: ``''`` (Empty string) 429 430 Default tablespace to use for indexes on fields that do not specify 430 **New in Django development version** 431 432 Default: ``''`` (Empty string) 433 434 Default tablespace to use for indexes on fields that don't specify 431 435 one, if the backend supports it. 432 436
