Files
benchcoach-django/benchcoach/migrations/0002_alter_player_jersey_number.py
Tony 95697ef4fe consolidated objects into one benchcoach app
created benchcoachproject app to contain all the settings and stuff
some other changes that got grouped with this commit is the adding the ApiObject to the TeamSnap object model
2021-12-21 17:18:04 -06:00

19 lines
384 B
Python

# Generated by Django 3.2.6 on 2021-12-19 01:22
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('benchcoach', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='player',
name='jersey_number',
field=models.IntegerField(null=True),
),
]