summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-11-24 08:43:58 -0800
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-11-25 08:42:35 +0100
commita69c4d626afe9e56131aeb624caf3137ddd98bcb (patch)
tree4f0a8380b797bfd3c4ebe53b5fd027546a2ff5b3 /docs
parent9f1ec9efc35bbb375c9cebb3e0d8c1b7be838338 (diff)
Refs #25388 -- Corrected value of TEST MIGRATE setting in MIGRATION_MODULES docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/settings.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index a32cc4e2a4..d493b76aa0 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -2047,9 +2047,10 @@ an app without migrations regardless of an existing ``migrations`` submodule.
This can be used, for example, in a test settings file to skip migrations while
testing (tables will still be created for the apps' models). To disable
migrations for all apps during tests, you can set the
-:setting:`MIGRATE <TEST_MIGRATE>` to ``True`` instead. If ``MIGRATION_MODULES``
-is used in your general project settings, remember to use the
-:option:`migrate --run-syncdb` option if you want to create tables for the app.
+:setting:`MIGRATE <TEST_MIGRATE>` to ``False`` instead. If
+``MIGRATION_MODULES`` is used in your general project settings, remember to use
+the :option:`migrate --run-syncdb` option if you want to create tables for the
+app.
.. setting:: MONTH_DAY_FORMAT