# Generated by Django 3.2.8 on 2023-06-15 14:22

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('research', '0188_auto_20230511_2035'),
    ]

    operations = [
        migrations.AddField(
            model_name='thesis',
            name='supervisor_manual',
            field=models.CharField(blank=True, choices=[('Project', 'Project'), ('Bachelor', 'Bachelor'), ('Master,', 'Master'), ('Diplom', 'Diplom'), ('PhD', 'PhD')], max_length=50, null=True, verbose_name='Supervisor (not chair related)'),
        ),
        migrations.AlterField(
            model_name='thesis',
            name='author_manual',
            field=models.CharField(blank=True, help_text='Please enter the full name of the author if the author is and was not a member of this chair.', max_length=100, verbose_name='Author (not chair related)'),
        ),
    ]
