summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-05-07 08:16:01 -0400
committerTim Graham <timograham@gmail.com>2014-05-07 08:16:01 -0400
commit10327be1f3f9fed5dc40f6fe42e5494afcf7aa76 (patch)
tree63e1f280302052990c07ad4a550e4dd51e76bb47 /docs/internals
parent1ed876ee5bd71092faf07559a25091bc27f96489 (diff)
[1.7.x] Bump DatabaseCreation deprecation to 2.0 (refs #22340)
Backport of 61da5f3f02 from master
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt12
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index d0bfc90e20..fcd9c3fd80 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -7,11 +7,6 @@ in a backward incompatible way, following their deprecation, as per the
:ref:`deprecation policy <internal-release-deprecation-policy>`. More details
about each item can often be found in the release notes of two versions prior.
-.. _deprecation-removed-in-2.0:
-
-2.0
----
-
.. _deprecation-removed-in-1.9:
1.9
@@ -36,13 +31,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