# Generated by Django 5.1.7 on 2025-08-12 15:20

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('internal', '0758_member_scholar_gps'),
    ]

    operations = [
        migrations.AlterField(
            model_name='group',
            name='group_type',
            field=models.CharField(choices=[('experiment', 'experiment'), ('theory', 'theory'), ('experiment_and_theory', 'experiment and theory'), ('facility', 'facility'), ('incubation', 'incubation')], default='experiment', help_text='Group type', max_length=50, null=True),
        ),
    ]
