Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/migrations/test_migrations_squashed_complex_multi_apps/app1/2_squashed_3.py
blob: 521e70f5d2623eec90f73d3bbc5a24b196afa8d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

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)
    ]