Django 1.9
[prawokultury.git] / chunks / migrations / 0002_auto_20190925_1136.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import migrations, models
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('chunks', '0001_initial'),
11     ]
12
13     operations = [
14         migrations.AlterModelOptions(
15             name='chunk',
16             options={'ordering': ('key',), 'verbose_name': 'chunk', 'verbose_name_plural': 'chunks'},
17         ),
18         migrations.AlterField(
19             model_name='chunk',
20             name='content_en_markup_type',
21             field=models.CharField(default=b'textile_pl', max_length=30, editable=False, choices=[(b'', b'--'), (b'textile_pl', b'textile_pl')]),
22         ),
23         migrations.AlterField(
24             model_name='chunk',
25             name='content_pl_markup_type',
26             field=models.CharField(default=b'textile_pl', max_length=30, editable=False, choices=[(b'', b'--'), (b'textile_pl', b'textile_pl')]),
27         ),
28         migrations.AlterField(
29             model_name='chunk',
30             name='key',
31             field=models.CharField(help_text='A unique name for this chunk of content', max_length=255, serialize=False, verbose_name='key', primary_key=True),
32         ),
33     ]