You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
666 B

# Generated by Django 3.2.13 on 2022-05-04 21:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0002_auto_20220504_2124'),
]
operations = [
migrations.AddField(
model_name='shot',
name='period',
field=models.IntegerField(choices=[(1, '1st'), (2, '2nd'), (3, '3rd'), (4, 'OT'), (5, '2OT'), (6, '3OT'), (7, '4OT'), (8, '5OT'), (9, '6OT'), (0, 'SO')], default=1),
),
migrations.AddField(
model_name='shot',
name='time',
field=models.DurationField(blank=True, null=True),
),
]