Merge pull request #165 from yakky/master

Recreate migrations
This commit is contained in:
Iacopo Spalletti 2014-08-20 18:44:03 +02:00
commit 9b5c5bccc3
1 changed files with 1 additions and 1 deletions

View File

@ -14,8 +14,8 @@ class Migration(migrations.Migration):
migrations.CreateModel(
name='Text',
fields=[
('cmsplugin_ptr', models.OneToOneField(serialize=False, parent_link=True, auto_created=True, to='cms.CMSPlugin', primary_key=True)),
('body', models.TextField(verbose_name='body')),
('cmsplugin_ptr', models.OneToOneField(auto_created=True, primary_key=True, serialize=False, to='cms.CMSPlugin')),
],
options={
'abstract': False,