summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-08-31 10:40:45 -0400
committerTim Graham <timograham@gmail.com>2015-09-04 09:59:30 -0400
commit20dfd02db0e57006bec763d67c8845987cc37740 (patch)
tree359e48528882466e2f8b69936efffb2e95db36c1
parent7dabaa8ee33a97558486905f18e8cb5cd357d7da (diff)
[1.8.x] Refs #25144 -- Revised deprecation timeline: migrations won't become compulsory.
Backport of e133b55943f26e87cff5b22215a776a9ce3fc6f3 from master
-rw-r--r--docs/internals/deprecation.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index ab8e58c515..2fca895ea0 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -196,9 +196,12 @@ details on these changes.
* ``allow_syncdb`` on database routers will no longer automatically become
``allow_migrate``.
-* The legacy method of syncing apps without migrations will be removed,
- and migrations will become compulsory for all apps. This includes automatic
- loading of ``initial_data`` fixtures and support for initial SQL data.
+* Automatic syncing of apps without migrations will be removed. Migrations will
+ become compulsory for all apps unless you pass the ``--run-syncdb`` option to
+ ``migrate``.
+
+* Support for automatic loading of ``initial_data`` fixtures and initial SQL
+ data will be removed.
* All models will need to be defined inside an installed application or
declare an explicit :attr:`~django.db.models.Options.app_label`.