X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/13b2e43b6332e11bc580cccb6be782e039cf210c..bf852b7e6f2828e0ef53440b69247e10b782e8cd:/chunks/migrations/0002_auto_20190925_1136.py?ds=sidebyside diff --git a/chunks/migrations/0002_auto_20190925_1136.py b/chunks/migrations/0002_auto_20190925_1136.py new file mode 100644 index 0000000..df2596e --- /dev/null +++ b/chunks/migrations/0002_auto_20190925_1136.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('chunks', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='chunk', + options={'ordering': ('key',), 'verbose_name': 'chunk', 'verbose_name_plural': 'chunks'}, + ), + migrations.AlterField( + model_name='chunk', + name='content_en_markup_type', + field=models.CharField(default=b'textile_pl', max_length=30, editable=False, choices=[(b'', b'--'), (b'textile_pl', b'textile_pl')]), + ), + migrations.AlterField( + model_name='chunk', + name='content_pl_markup_type', + field=models.CharField(default=b'textile_pl', max_length=30, editable=False, choices=[(b'', b'--'), (b'textile_pl', b'textile_pl')]), + ), + migrations.AlterField( + model_name='chunk', + name='key', + field=models.CharField(help_text='A unique name for this chunk of content', max_length=255, serialize=False, verbose_name='key', primary_key=True), + ), + ]