# Generated by Django 3.2.8 on 2023-05-11 18:35

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('research', '0187_auto_20230502_0924'),
    ]

    operations = [
        migrations.AddField(
            model_name='project',
            name='show_public',
            field=models.BooleanField(default=True, help_text='Show on webpage?'),
        ),
        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),
        ),
    ]
