Django

Code

Show
Ignore:
Timestamp:
12/01/07 13:23:49 (1 year ago)
Author:
ikelly
Message:

Fixed #6007: Added DEFAULT_TABLESPACE and DEFAULT_INDEX_TABLESPACE
options to global_settings.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/databases.txt

    r6763 r6801  
    259259it would be stored in the model tablespace ``tables`` by default. 
    260260 
     261The settings.py file supports two additional options to specify 
     262default values for the db_tablespace options. This is useful for 
     263setting a tablespace for the Django internal apps and other 
     264contributed applications.  These options are ``DEFAULT_TABLESPACE`` 
     265and ``DEFAULT_INDEX_TABLESPACE``. 
     266 
    261267Django does not create the tablespaces for you. Please refer to `Oracle's 
    262268documentation`_ for details on creating and managing tablespaces.