2014-05-16 01:41:55 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-04-01 03:25:08 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-01-08 21:00:12 +08:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
("auth", "__first__"),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
|
|
|
|
migrations.CreateModel(
|
|
|
|
"Book",
|
|
|
|
[
|
|
|
|
("id", models.AutoField(primary_key=True)),
|
|
|
|
("user", models.ForeignKey("auth.User", null=True)),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
]
|