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.
19 lines
587 B
Python
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),
|
|
),
|
|
]
|