1
0
mirror of https://github.com/django/django.git synced 2025-10-28 08:06:09 +00:00
Files
django/tests/auth_tests/operations_migrations/0001_initial.py

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