1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-26 06:37:38 +02:00

Files are required for solutions and syntheses

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
2022-04-29 18:53:34 +02:00
parent c686584e74
commit 5f2cd16071
3 changed files with 25 additions and 5 deletions

View File

@ -0,0 +1,24 @@
# Generated by Django 3.2.13 on 2022-04-29 16:53
from django.db import migrations, models
import participation.models
class Migration(migrations.Migration):
dependencies = [
('participation', '0007_remove_passage_place'),
]
operations = [
migrations.AlterField(
model_name='solution',
name='file',
field=models.FileField(unique=True, upload_to=participation.models.get_solution_filename, verbose_name='file'),
),
migrations.AlterField(
model_name='synthesis',
name='file',
field=models.FileField(unique=True, upload_to=participation.models.get_synthesis_filename, verbose_name='file'),
),
]