1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-09-15 15:27:42 +02:00
Files
api
chat
docs
draw
locale
logs
participation
api
management
migrations
0001_initial.py
0002_initial.py
0003_alter_team_trigram.py
0004_alter_pool_options_pool_letter.py
0005_alter_team_options.py
0006_alter_passage_options_passage_position_and_more.py
0007_note_observer_oral_passage_observer.py
0008_alter_participation_options.py
0009_pool_jury_president.py
0010_tournament_notes_sheet_id_alter_note_defender_oral_and_more.py
0011_remove_note_observer_oral_remove_passage_observer.py
0012_participation_mention_participation_mention_final.py
0013_alter_pool_options_pool_room.py
__init__.py
templates
__init__.py
admin.py
apps.py
forms.py
models.py
search_indexes.py
signals.py
tables.py
tests.py
urls.py
views.py
registration
tfjm
.bashrc
.dockerignore
.gitignore
.gitlab-ci.yml
Dockerfile
LICENSE
README.md
entrypoint.sh
manage.py
nginx_tfjm.conf
requirements.txt
tfjm.cron
tox.ini
plateforme-tfjm2/participation/migrations/0004_alter_pool_options_pool_letter.py
Emmy D'Anello 0fa76d6f25 Add letter in pool display
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-04-04 10:25:55 +02:00

31 lines
819 B
Python

# Generated by Django 4.1.7 on 2023-03-31 15:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("participation", "0003_alter_team_trigram"),
]
operations = [
migrations.AlterModelOptions(
name="pool",
options={
"ordering": ("round", "letter"),
"verbose_name": "pool",
"verbose_name_plural": "pools",
},
),
migrations.AddField(
model_name="pool",
name="letter",
field=models.PositiveSmallIntegerField(
choices=[(1, "A"), (2, "B"), (3, "C"), (4, "D")],
default=1,
verbose_name="letter",
),
preserve_default=False,
),
]