# Generated by Django 3.2.8 on 2021-11-10 08:54

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('research', '0111_open_thesis_public'),
    ]

    operations = [
        migrations.AlterField(
            model_name='open_thesis',
            name='pub_type',
            field=models.CharField(blank=True, choices=[('Project', 'Project'), ('Bachelor', 'Bachelor'), ('Master,', 'Master'), ('Diplom', 'Diplom'), ('PhD', 'PhD')], default='Master', help_text='Thesis type', max_length=20, null=True),
        ),
    ]
