# Generated manually for adding transect event type

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('eventhub', '0002_remove_event_project_alter_event_event_type_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='event',
            name='event_type',
            field=models.CharField(
                choices=[
                    ('project', 'Project'),
                    ('site', 'Site'),
                    ('transect', 'Transect'),
                    ('visit', 'Visit'),
                    ('sample', 'Sample'),
                    ('biotope_mapping_unit', 'Biotope Mapping Unit'),
                    ('note', 'Note')
                ],
                max_length=50
            ),
        ),
    ]






