summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/settings.txt11
-rw-r--r--docs/releases/1.10.txt3
2 files changed, 0 insertions, 14 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index f995f4c21d..7bbc3a20aa 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -696,17 +696,6 @@ The creation-order dependencies of the database. See the documentation
on :ref:`controlling the creation order of test databases
<topics-testing-creation-dependencies>` for details.
-.. setting:: TEST_MIGRATE
-
-``MIGRATE``
-^^^^^^^^^^^
-
-.. versionadded:: 1.10
-
-Default: ``True``
-
-If set to ``False``, Django won't use migrations to create the test database.
-
.. setting:: TEST_MIRROR
``MIRROR``
diff --git a/docs/releases/1.10.txt b/docs/releases/1.10.txt
index a955e351e2..30a919de88 100644
--- a/docs/releases/1.10.txt
+++ b/docs/releases/1.10.txt
@@ -480,9 +480,6 @@ Tests
and run selectively with the new :option:`test --tag` and :option:`test
--exclude-tag` options.
-* Added the :setting:`DATABASES['TEST']['MIGRATE'] <TEST_MIGRATE>` option to
- allow disabling of migrations during test database creation.
-
* You can now login and use sessions with the test client even if
:mod:`django.contrib.sessions` is not in :setting:`INSTALLED_APPS`.