diff --git a/combo/data/migrations/0006_linkcell.py b/combo/data/migrations/0006_linkcell.py new file mode 100644 index 00000000..c7a90c57 --- /dev/null +++ b/combo/data/migrations/0006_linkcell.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('auth', '0001_initial'), + ('data', '0005_auto_20150226_0903'), + ] + + operations = [ + migrations.CreateModel( + name='LinkCell', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('placeholder', models.CharField(max_length=20)), + ('order', models.PositiveIntegerField()), + ('slug', models.SlugField(verbose_name='Slug', blank=True)), + ('public', models.BooleanField(default=True, verbose_name='Public')), + ('title', models.CharField(max_length=150, verbose_name='Title')), + ('url', models.URLField(verbose_name='URL')), + ('groups', models.ManyToManyField(to='auth.Group', verbose_name='Groups', blank=True)), + ('page', models.ForeignKey(to='data.Page')), + ], + options={ + 'verbose_name': 'Link', + }, + bases=(models.Model,), + ), + ]