blob: 49a475653c1c87b3340fa3556304c2e37d0f9ec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
operations = [
migrations.CreateModel(
name="OldModel",
fields=[
("id", models.AutoField(primary_key=True)),
],
),
]
|