19 lines
611 B
Python
19 lines
611 B
Python
# Generated by Django 2.2.14 on 2020-09-28 15:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('objectives', '0008_auto_20190821_1252'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='objectivegroup',
|
|
name='title',
|
|
field=models.CharField(blank=True, choices=[('language_communication', 'Sprache & Kommunikation'), ('society', 'Gesellschaft'), ('interdisciplinary', 'Überfachliche Lernziele')], default='language_communication', max_length=255, verbose_name='title'),
|
|
),
|
|
]
|