refactor: move role and specialty ownership to player

This commit is contained in:
2026-04-06 19:26:07 +02:00
parent aecbb62376
commit e6390fe664
4 changed files with 96 additions and 24 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 5.2.2 on 2026-04-06 17:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('scouting', '0002_alter_team_unique_together_and_more'),
]
operations = [
migrations.AlterField(
model_name='player',
name='position',
field=models.CharField(choices=[('PG', 'PG'), ('SG', 'SG'), ('SF', 'SF'), ('PF', 'PF'), ('C', 'C')], max_length=2),
),
]