blob: 0fbc0d7abbf4491b800f2e8c20b961816e72f3fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from django.db import migrations
class Migration(migrations.Migration):
replaces = [
("app2", "1_auto"),
("app2", "2_auto"),
]
dependencies = [("app1", "1_auto")]
operations = [migrations.RunPython(migrations.RunPython.noop)]
|