19 lines
567 B
Python
19 lines
567 B
Python
# Generated by Django 2.0.6 on 2019-09-12 12:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('books', '0013_auto_20190808_0649'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='contentblock',
|
|
name='type',
|
|
field=models.CharField(choices=[('normal', 'Normal'), ('base_communication', 'Instrument Sprache & Kommunikation'), ('task', 'Auftrag'), ('base_society', 'Instrument Gesellschaft')], default='normal', max_length=100),
|
|
),
|
|
]
|