summaryrefslogtreecommitdiff
path: root/tests/migrations/test_migrations_squashed_ref_squashed/app2/1_squashed_2.py
blob: 70672398867276b33f662d7626e8aa48d8091173 (plain)
1
2
3
4
5
6
7
8
9
10
from django.db import migrations


class Migration(migrations.Migration):
    replaces = [
        ("app2", "1_auto"),
        ("app2", "2_auto"),
    ]

    dependencies = [("app1", "1_auto")]