1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-29 07:50:56 +02:00

Add export button

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2023-03-25 20:38:58 +01:00
parent e95d511017
commit b838f1b3f0
5 changed files with 134 additions and 2 deletions

View File

@ -0,0 +1,26 @@
# Generated by Django 4.1.7 on 2023-03-25 07:22
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
("participation", "0003_alter_team_trigram"),
("draw", "0005_draw_last_message"),
]
operations = [
migrations.AddField(
model_name="pool",
name="associated_pool",
field=models.OneToOneField(
default=None,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="draw_pool",
to="participation.pool",
verbose_name="associated pool",
),
),
]