# Generated by Django 5.1.6 on 2025-03-02 00:09 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('competition', '0001_initial'), ] operations = [ migrations.AlterField( model_name='state', name='state', field=models.CharField(choices=[('not_started', 'Not Started'), ('started', 'Started'), ('finished', 'Finished')], default='not_started', max_length=11), ), ]