0012_alter_coach_mode.py
1 # Generated by Django 4.2.3 on 2023-07-19 13:16 2 3 from django.db import migrations, models 4 5 6 class Migration(migrations.Migration): 7 dependencies = [ 8 ("telemetry", "0011_remove_coach_track_walk_coach_mode"), 9 ] 10 11 operations = [ 12 migrations.AlterField( 13 model_name="coach", 14 name="mode", 15 field=models.CharField( 16 choices=[("default", "Default"), ("debug", "Debug")], default="default", max_length=64 17 ), 18 ), 19 ]