15 lines
281 B
Python
15 lines
281 B
Python
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
initial = True
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
'Author',
|
||
|
[
|
||
|
('id', models.AutoField(primary_key=True)),
|
||
|
],
|
||
|
),
|
||
|
]
|