Add final ranking for superuser (ioi16 only)
This commit is contained in:
parent
6635c3ee99
commit
309b6298e2
16 changed files with 424 additions and 336 deletions
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 3.2.16 on 2022-12-28 18:36
|
||||
|
||||
from django.db import migrations
|
||||
import jsonfield.fields
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("judge", "0141_contestproblem_frozen_subtasks"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="contestparticipation",
|
||||
name="format_data_final",
|
||||
field=jsonfield.fields.JSONField(
|
||||
blank=True,
|
||||
null=True,
|
||||
verbose_name="same as format_data, but including frozen results",
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue