19 lines
642 B
Python
19 lines
642 B
Python
# Generated by Django 2.1.15 on 2020-04-08 08:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('books', '0018_remove_module_solutions_enabled_by'),
|
|
]
|
|
|
|
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'), ('base_interdisciplinary', 'Überfachliches Instrument')], default='normal', max_length=100),
|
|
),
|
|
]
|