You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
padel/scores/migrations/0024_alter_match_teams.py

18 lines
402 B

# Generated by Django 4.2 on 2023-08-11 14:14
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('scores', '0023_match_teams_player'),
]
operations = [
migrations.AlterField(
model_name='match',
name='teams',
field=models.ManyToManyField(blank=True, to='scores.team'),
),
]