# Generated by Django 3.2.8 on 2024-01-10 11:57

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('home', '0073_delete_acknowledgement'),
        ('teaching', '0690_auto_20240110_1033'),
    ]

    operations = [
        migrations.AlterField(
            model_name='schedule',
            name='room',
            field=models.ManyToManyField(blank=True, to='home.Room'),
        ),
        migrations.AlterField(
            model_name='seminar',
            name='dsc_subtopic',
            field=models.CharField(blank=True, choices=[('topic00', 'TOPIC_BIOLOGY'), ('topic01', 'TOPIC_PHYSICS'), ('topic02', 'TOPIC_MATHEMATICS'), ('topic03', 'TOPIC_COMPUTER_SCIENCE'), ('topic04', 'TOPIC_CHEMISTRY'), ('topic05', 'TOPIC_MEDICINE'), ('topic06', 'TOPIC_PSYCHOLOGY'), ('topic07', 'TOPIC_ELECENGANDINFTECH'), ('topic08', 'TOPIC_MECHANICALENGINEERING'), ('topic09', 'TOPIC_MATERIALS'), ('topic10', 'TOPIC_CIVILENGINEERING'), ('topic11', 'TOPIC_TRANSPORTATIONANDTRAFFIC'), ('topic12', 'TOPIC_FORESTGEOHYDRO'), ('topic13', 'TOPIC_SOCIETY'), ('topic14', 'TOPIC_LINGUISTICSLITERATURECULTURE'), ('topic15', 'TOPIC_LAW'), ('topic16', 'TOPIC_ECONOMICS'), ('topic17', 'TOPIC_TRAINING'), ('topic18', 'TOPIC_TRANSFER'), ('topic19', 'TOPIC_OTHER')], default='topic09', help_text='will displayed in Dresden Science Calendar', max_length=50, null=True, verbose_name='Subtopic for Dresden Science Calendar'),
        ),
        migrations.AlterField(
            model_name='seminar',
            name='dsc_topic',
            field=models.CharField(blank=True, choices=[('topic00', 'TOPIC_BIOLOGY'), ('topic01', 'TOPIC_PHYSICS'), ('topic02', 'TOPIC_MATHEMATICS'), ('topic03', 'TOPIC_COMPUTER_SCIENCE'), ('topic04', 'TOPIC_CHEMISTRY'), ('topic05', 'TOPIC_MEDICINE'), ('topic06', 'TOPIC_PSYCHOLOGY'), ('topic07', 'TOPIC_ELECENGANDINFTECH'), ('topic08', 'TOPIC_MECHANICALENGINEERING'), ('topic09', 'TOPIC_MATERIALS'), ('topic10', 'TOPIC_CIVILENGINEERING'), ('topic11', 'TOPIC_TRANSPORTATIONANDTRAFFIC'), ('topic12', 'TOPIC_FORESTGEOHYDRO'), ('topic13', 'TOPIC_SOCIETY'), ('topic14', 'TOPIC_LINGUISTICSLITERATURECULTURE'), ('topic15', 'TOPIC_LAW'), ('topic16', 'TOPIC_ECONOMICS'), ('topic17', 'TOPIC_TRAINING'), ('topic18', 'TOPIC_TRANSFER'), ('topic19', 'TOPIC_OTHER')], default='topic09', help_text='will displayed in Dresden Science Calendar', max_length=50, null=True, verbose_name='Topic for Dresden Science Calendar'),
        ),
    ]
