Fixed #21142: Dependency failures on unmigrated apps.

This commit is contained in:
Andrew Godwin 2014-01-08 13:00:12 +00:00
parent 0423e0796a
commit 64887c644a
7 changed files with 92 additions and 4 deletions

View file

@ -3,7 +3,9 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("migrations", "0001_initial")]
dependencies = [
("migrations", "0001_initial"),
]
operations = [