diff --git a/combo/data/migrations/0009_auto_20150529_2247.py b/combo/data/migrations/0009_auto_20150529_2247.py new file mode 100644 index 00000000..1e3e17b9 --- /dev/null +++ b/combo/data/migrations/0009_auto_20150529_2247.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0008_auto_20150529_1504'), + ] + + operations = [ + migrations.AlterField( + model_name='linkcell', + name='link_page', + field=models.ForeignKey(related_name='link_cell', verbose_name='Internal link', blank=True, to='data.Page', null=True), + preserve_default=True, + ), + ]