fixed typo in the names of teamsnap models

This commit is contained in:
2021-12-10 16:04:31 -06:00
parent 8d2cba39f7
commit 7afabe152b
2 changed files with 36 additions and 3 deletions

View File

@@ -0,0 +1,33 @@
# Generated by Django 3.2.6 on 2021-12-10 17:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('teamsnap', '0014_alter_lineupentry_teamsnap_id'),
]
operations = [
migrations.RenameField(
model_name='event',
old_name='bencoach_event',
new_name='benchcoach_event',
),
migrations.RenameField(
model_name='location',
old_name='bencoach_venue',
new_name='benchcoach_venue',
),
migrations.RenameField(
model_name='member',
old_name='bencoach_player',
new_name='benchcoach_player',
),
migrations.AlterField(
model_name='lineupentry',
name='sequence',
field=models.PositiveSmallIntegerField(blank=True, default=0, null=True),
),
]