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:
26
draw/migrations/0006_pool_associated_pool.py
Normal file
26
draw/migrations/0006_pool_associated_pool.py
Normal 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",
|
||||
),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user