summaryrefslogtreecommitdiff
path: root/docs/databases.txt
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-12-19 05:08:37 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-12-19 05:08:37 +0000
commit97091940b1efbc6018133e9f77402c2983fa702f (patch)
treee003a3ec00ab4b0bd0cda7799485cedbf787cd31 /docs/databases.txt
parent13d3162aaf7fce11c06d447f397e32b7648ae199 (diff)
queryset-refactor: Merged from trunk up to [6953].
git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@6954 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/databases.txt')
-rw-r--r--docs/databases.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/databases.txt b/docs/databases.txt
index 5ee6aa4304..6832c2b361 100644
--- a/docs/databases.txt
+++ b/docs/databases.txt
@@ -258,11 +258,10 @@ many-to-many table would be stored in the ``indexes`` tablespace. The ``data``
field would also generate an index, but no tablespace for it is specified, so
it would be stored in the model tablespace ``tables`` by default.
-The settings.py file supports two additional options to specify
-default values for the db_tablespace options. This is useful for
-setting a tablespace for the Django internal apps and other
-contributed applications. These options are ``DEFAULT_TABLESPACE``
-and ``DEFAULT_INDEX_TABLESPACE``.
+**New in the Django development version:** Use the ``DEFAULT_TABLESPACE`` and
+``DEFAULT_INDEX_TABLESPACE`` settings to specify default values for the
+db_tablespace options. These are useful for setting a tablespace for the
+built-in Django apps and other applications whose code you cannot control.
Django does not create the tablespaces for you. Please refer to `Oracle's
documentation`_ for details on creating and managing tablespaces.