# Generated by Django 5.1.7 on 2025-04-02 10:13

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('research', '0200_alter_thesis_author_new'),
    ]

    operations = [
        migrations.AlterField(
            model_name='thesis',
            name='pub_type',
            field=models.CharField(choices=[('Project', 'Project'), ('Bachelor', 'Bachelor'), ('Master,', 'Master'), ('Diplom', 'Diplom'), ('PhD', 'PhD'), ('habil.', 'habil.')], default='PhD', max_length=20, verbose_name='Thesis  type'),
        ),
    ]
