refactor: move role and specialty ownership to player
This commit is contained in:
18
app/scouting/migrations/0003_alter_player_position.py
Normal file
18
app/scouting/migrations/0003_alter_player_position.py
Normal 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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user