mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-07-05 13:23:55 +02:00
24
draw/migrations/0003_teamdraw_round.py
Normal file
24
draw/migrations/0003_teamdraw_round.py
Normal file
@ -0,0 +1,24 @@
|
||||
# Generated by Django 4.1.7 on 2023-03-22 21:39
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("draw", "0002_pool_size_alter_pool_letter_alter_round_number_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="teamdraw",
|
||||
name="round",
|
||||
field=models.ForeignKey(
|
||||
default=1,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
to="draw.round",
|
||||
verbose_name="round",
|
||||
),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user