mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #21142: Dependency failures on unmigrated apps.
This commit is contained in:
parent
0423e0796a
commit
64887c644a
7 changed files with 92 additions and 4 deletions
|
@ -3,7 +3,9 @@ from django.db import migrations, models
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [("migrations", "0001_initial")]
|
||||
dependencies = [
|
||||
("migrations", "0001_initial"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue