From 2d2eeff3b1cbdaa3b8f22a904da044ac709cc07e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 31 Aug 2015 10:40:45 -0400 Subject: [PATCH] [1.7.x] Refs #25144 -- Revised deprecation timeline: migrations won't become compulsory. Backport of e133b55943f26e87cff5b22215a776a9ce3fc6f3 from master --- docs/internals/deprecation.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 40f003b0d3..aa3862a16f 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -32,9 +32,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`.