(no title)
Wilya | 4 years ago
The migration file will contain explicit dependency information, something like:
dependencies = [
('app', '0010_alter_menuitem_absolute_url')
]
The migration engine will order the dependencies at runtime, and it will bail (and suggest creating a "merge" migration) if you have diverging trees of migrations. I find it pretty robust in practice.
No comments yet.