# Generated by Django 3.2.8 on 2022-10-13 13:52

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('home', '0065_alter_room_name'),
        ('teaching', '0593_auto_20221013_1520'),
    ]

    operations = [
        migrations.AddField(
            model_name='seminar',
            name='notes_internal',
            field=models.CharField(blank=True, help_text='Example: Speaker wants to talk with theory group after presentation.', max_length=1000, null=True, verbose_name='Internal Notes'),
        ),
        migrations.AddField(
            model_name='seminar',
            name='suggested_date',
            field=models.DateField(help_text='The date when you got the suggestion.', null=True, verbose_name='Suggested at'),
        ),
        migrations.AlterField(
            model_name='schedule',
            name='room',
            field=models.ManyToManyField(blank=True, to='home.Room'),
        ),
    ]
