# 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), ), ]