# Generated by Django 5.2.15 on 2026-07-07 13:43

import django_fsm
from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ("smehub_showcasing", "0003_phase4_dealroom_expiry_warning"),
    ]

    operations = [
        migrations.AlterField(
            model_name="showcaseapplication",
            name="status",
            field=django_fsm.FSMField(
                choices=[
                    ("draft", "Draft"),
                    ("submitted", "Submitted"),
                    ("under_review", "Under review"),
                    ("confirmed", "Confirmed"),
                    ("rejected", "Rejected"),
                    ("withdrawn", "Withdrawn"),
                ],
                db_index=True,
                default="submitted",
                max_length=16,
                protected=True,
            ),
        ),
    ]
