1
0
mirror of https://github.com/django/django.git synced 2025-01-15 21:02:52 +00:00

16 lines
341 B
Python

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