Files
benchcoach-django/lineups/migrations/0005_alter_positioning_position.py
Tony 0dc6694891 updates. submits lineups. harmonization between bench and lineup still needs work.
changes order of choices in position so EH is on top
known issuees:
an order of 0 will get over ridden
maybe need a "DHd" flag
still not harmonized means cannot drag from lineup to bench.
2021-11-19 17:06:02 -06:00

19 lines
587 B
Python

# Generated by Django 3.2.6 on 2021-11-18 23:37
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('lineups', '0004_alter_availability_available'),
]
operations = [
migrations.AlterField(
model_name='positioning',
name='position',
field=models.CharField(choices=[('EH', 'EH'), ('P', 'P'), ('C', 'C'), ('1B', '1B'), ('2B', '2B'), ('3B', '3B'), ('SS', 'SS'), ('LF', 'LF'), ('CF', 'CF'), ('RF', 'RF'), ('DH', 'DH')], default=None, max_length=2, null=True),
),
]