parent
988c7425ff
commit
0f52bf7c96
|
@ -234,8 +234,8 @@ class ExecutorTests(MigrationTestBase):
|
||||||
|
|
||||||
@override_settings(
|
@override_settings(
|
||||||
MIGRATION_MODULES={
|
MIGRATION_MODULES={
|
||||||
"migrations": "migrations.test_migrations_backwards_deps_1",
|
"migrations": "migrations.test_migrations_backwards_deps_1",
|
||||||
"migrations2": "migrations2.test_migrations_backwards_deps_2",
|
"migrations2": "migrations2.test_migrations_backwards_deps_2",
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
def test_backwards_deps(self):
|
def test_backwards_deps(self):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.db import migrations, models
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.db import migrations, models
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
Loading…
Reference in New Issue