Jarvis/jarvis/people/migrations/0008_alter_gymnast_orientat...

24 lines
616 B
Python

# Generated by Django 4.1.1 on 2022-11-02 13:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("people", "0007_remove_gymnast_club_remove_gymnast_hours_by_week_and_more"),
]
operations = [
migrations.AlterField(
model_name="gymnast",
name="orientation",
field=models.PositiveSmallIntegerField(
blank=True,
choices=[(None, "Unknown"), (1, "Left"), (2, "Right")],
null=True,
verbose_name="Twist side",
),
),
]