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