summaryrefslogtreecommitdiff
path: root/tests/migrations/migrations_test_apps/lookuperror_a/migrations/0004_a4.py
blob: 5a1ebfb684073ec969fec27aca5b9dfc75ae4d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('lookuperror_a', '0003_a3'),
    ]

    operations = [
        migrations.CreateModel(
            name='A4',
            fields=[
                ('id', models.AutoField(auto_created=True, serialize=False, verbose_name='ID', primary_key=True)),
            ],
        ),
    ]