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.
 
 
 
 
padelclub_backend/tournaments/migrations/0038_alter_event_club.py

19 lines
535 B

# Generated by Django 4.2.11 on 2024-05-06 13:18
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('tournaments', '0037_rename_weight_playerregistration_computed_rank_and_more'),
]
operations = [
migrations.AlterField(
model_name='event',
name='club',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='tournaments.club'),
),
]