summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-05-06 22:13:53 -0700
committerAndrew Godwin <andrew@aeracode.org>2014-05-06 22:14:15 -0700
commit61da5f3f02f34810aaa6fcddac3808318a5b95c4 (patch)
treeeb2632380332d658b971016a254b74bfc1bdae28
parent4492ea5475fd7c27c2cfda17c5f105940a3f06e7 (diff)
Bump DatabaseCreation deprecation to 2.0 (refs #22340)
-rw-r--r--docs/internals/deprecation.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 4d09f23fd4..f0fbbd36b2 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -25,6 +25,13 @@ about each item can often be found in the release notes of two versions prior.
* Using an incorrect count of unpacked values in the ``for`` template tag
will raise an exception rather than fail silently.
+* The ``DatabaseCreation`` class on each database backend will be removed,
+ and all table/schema editing will be moved to be via ``SchemaEditor`` instead.
+
+* The legacy method of syncing apps without migrations will be removed,
+ and migrations will become compulsory for all apps. This includes automatic
+ loading of fixtures and support for initial SQL data.
+
.. _deprecation-removed-in-1.9:
1.9
@@ -49,13 +56,6 @@ details on these changes.
* ``allow_syncdb`` on database routers will no longer automatically become
``allow_migrate``.
-* The ``DatabaseCreation`` class on each database backend will be removed,
- and all table/schema editing will be moved to be via ``SchemaEditor`` instead.
-
-* The legacy method of syncing apps without migrations will be removed,
- and migrations will become compulsory for all apps. This includes automatic
- loading of fixtures and support for initial SQL data.
-
* All models will need to be defined inside an installed application or
declare an explicit :attr:`~django.db.models.Options.app_label`.
Furthermore, it won't be possible to import them before their application