NDOJ/judge/migrations/0116_auto_20211011_0645.py

31 lines
812 B
Python
Raw Normal View History

2021-11-21 04:23:03 +00:00
# Generated by Django 2.2.17 on 2021-10-10 23:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2022-05-14 17:57:27 +00:00
("judge", "0115_auto_20210525_0222"),
2021-11-21 04:23:03 +00:00
]
operations = [
migrations.AlterField(
2022-05-14 17:57:27 +00:00
model_name="contest",
name="format_name",
field=models.CharField(
choices=[
("atcoder", "AtCoder"),
("default", "Default"),
("ecoo", "ECOO"),
("icpc", "ICPC"),
("ioi", "IOI"),
],
default="default",
help_text="The contest format module to use.",
max_length=32,
verbose_name="contest format",
),
2021-11-21 04:23:03 +00:00
),
]