blob: 34c73ea086225f8f9ed15310f783ea01557049d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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)),
],
),
]
|