17 lines
325 B
Python
17 lines
325 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
"Book",
|
||
|
[
|
||
|
("name", models.CharField(max_length=100)),
|
||
|
],
|
||
|
),
|
||
|
]
|