# Generated by Django 4.1.1 on 2022-12-07 11:27 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("followup", "0037_alter_chrono_chrono_type_and_more"), ] operations = [ migrations.AlterField( model_name="chrono", name="chrono_type", field=models.PositiveSmallIntegerField( choices=[ (0, "10 |"), (1, "Q1R1"), (2, "Q1R2"), (3, "Q2R1"), (4, "SF"), (5, "F"), (99, "Other"), ], verbose_name="Routine type", ), ), migrations.AlterField( model_name="gymnasthasroutine", name="routine_type", field=models.PositiveSmallIntegerField( choices=[ (0, "Other"), (1, "Q1R1"), (2, "Q1R2"), (3, "Q2R1"), (4, "SF"), (5, "F"), (6, "Q1R1S"), (7, "Q1R2S"), (8, "Q2R1S"), (9, "SFS"), (9, "FS"), (99, "Other"), ], default="1", verbose_name="Type", ), ), migrations.AlterField( model_name="numberofroutinedone", name="routine_type", field=models.PositiveSmallIntegerField( choices=[ (0, "Other"), (1, "Q1R1"), (2, "Q1R2"), (3, "Q2R1"), (4, "SF"), (5, "F"), (6, "Q1R1S"), (7, "Q1R2S"), (8, "Q2R1S"), (9, "SFS"), (9, "FS"), (99, "Other"), ], default="1", verbose_name="Type", ), ), migrations.AlterField( model_name="point", name="routine_type", field=models.PositiveSmallIntegerField( choices=[ (0, "Other"), (1, "Q1R1"), (2, "Q1R2"), (3, "Q2R1"), (4, "SF"), (5, "F"), (6, "Q1R1S"), (7, "Q1R2S"), (8, "Q2R1S"), (9, "SFS"), (9, "FS"), (99, "Other"), ] ), ), ]