1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #22660: Doc'd you can't have unmigrated apps depend on migrated

This commit is contained in:
Andrew Godwin
2014-06-15 11:46:56 -07:00
parent edd9f8a7b2
commit 24afb1d7a7
3 changed files with 31 additions and 0 deletions

View File

@@ -68,6 +68,10 @@ but a few of the key features are:
inside ``TransactionTestCase`` :ref:`unless specifically requested
<test-case-serialized-rollback>`.
* It is not advised to have apps without migrations depend on (have a
:ref:`ForeignKey <ref-foreignkey>` or :ref:`ManyToManyField <ref-manytomany>` to) apps with migrations. Read the
:ref:`dependencies documentation <unmigrated-dependencies>` for more.
.. _app-loading-refactor-17-release-note:
App-loading refactor