1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-05 13:23:55 +02:00

Draw dices

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2023-03-23 16:17:29 +01:00
parent 3a37b1e5f7
commit 0058ab504a
6 changed files with 418 additions and 30 deletions

View 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,
),
]