mirror of
https://github.com/django/django.git
synced 2025-11-02 04:48:33 +00:00
Fixed #22444 -- Marked initial SQL/fixture loading as deprecated.
Thanks Karen Tracey for the report.
This commit is contained in:
parent
11e30b684d
commit
a4acb80463
3 changed files with 20 additions and 7 deletions
|
|
@ -53,7 +53,8 @@ details on these changes.
|
|||
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.
|
||||
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`.
|
||||
|
|
@ -61,10 +62,6 @@ details on these changes.
|
|||
is loaded. In particular, it won't be possible to import models inside
|
||||
the root package of their application.
|
||||
|
||||
* If models are organized in a package, Django will no longer look for
|
||||
:ref:`initial SQL data<initial-sql>` in ``myapp/models/sql/``. Move your
|
||||
custom SQL files to ``myapp/sql/``.
|
||||
|
||||
* The model and form ``IPAddressField`` will be removed.
|
||||
|
||||
* ``AppCommand.handle_app()`` will no longer be supported.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue