1
0
mirror of https://github.com/django/django.git synced 2025-08-21 17:29:13 +00:00

15 lines
295 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
operations = [
migrations.CreateModel(
name="OldModel",
fields=[
("id", models.AutoField(primary_key=True)),
],
),
]