2014-05-20 22:29:32 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('migrations', '0002_second'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
|
|
|
name='ModelWithCustomBase',
|
|
|
|
fields=[
|
|
|
|
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
|
|
|
],
|
2014-07-10 14:53:16 +08:00
|
|
|
options={},
|
|
|
|
bases=(models.Model,),
|
|
|
|
),
|
|
|
|
migrations.CreateModel(
|
|
|
|
name='UnmigratedModel',
|
|
|
|
fields=[
|
|
|
|
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
|
|
|
],
|
|
|
|
options={},
|
2014-05-20 22:29:32 +08:00
|
|
|
bases=(models.Model,),
|
|
|
|
),
|
|
|
|
migrations.DeleteModel(
|
|
|
|
name='Author',
|
|
|
|
),
|
|
|
|
migrations.DeleteModel(
|
|
|
|
name='Book',
|
|
|
|
),
|
|
|
|
]
|