Store the defended solution in the passage

This commit is contained in:
Yohann D'ANELLO 2021-01-14 16:27:44 +01:00
parent d912c8aab4
commit 6f26b24359
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 3.0.11 on 2021-01-14 13:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('participation', '0009_auto_20210114_1313'),
]
operations = [
migrations.AddField(
model_name='passage',
name='solution_number',
field=models.PositiveSmallIntegerField(choices=[(1, 'Problem #1'), (2, 'Problem #2'), (3, 'Problem #3'), (4, 'Problem #4'), (5, 'Problem #5'), (6, 'Problem #6'), (7, 'Problem #7'), (8, 'Problem #8')], default=None, verbose_name='defended solution'),
preserve_default=False,
),
]