mirror of
https://github.com/Hopiu/django.git
synced 2026-03-23 01:10:30 +00:00
14 lines
281 B
Python
14 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)),
|
|
],
|
|
),
|
|
]
|