1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-26 20:47:09 +00:00
plateforme-tfjm2/participation/migrations/0008_alter_participation_options.py
Emmy D'Anello 0e7a275a28
Order participations by validity status and by trigram
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-04-11 22:46:15 +02:00

21 lines
527 B
Python

# Generated by Django 4.2 on 2023-04-11 20:41
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("participation", "0007_note_observer_oral_passage_observer"),
]
operations = [
migrations.AlterModelOptions(
name="participation",
options={
"ordering": ("valid", "team__trigram"),
"verbose_name": "participation",
"verbose_name_plural": "participations",
},
),
]