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