2022-06-22 07:28:34 +00:00
|
|
|
# Generated by Django 2.2.25 on 2022-06-22 07:24
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2022-06-26 05:07:34 +00:00
|
|
|
("judge", "0128_auto_20220620_2210"),
|
2022-06-22 07:28:34 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2022-06-26 05:07:34 +00:00
|
|
|
model_name="problemdata",
|
|
|
|
name="checker",
|
|
|
|
field=models.CharField(
|
|
|
|
blank=True,
|
|
|
|
choices=[
|
|
|
|
("standard", "Standard"),
|
|
|
|
("floats", "Floats"),
|
|
|
|
("floatsabs", "Floats (absolute)"),
|
|
|
|
("floatsrel", "Floats (relative)"),
|
|
|
|
("rstripped", "Non-trailing spaces"),
|
|
|
|
("sorted", "Unordered"),
|
|
|
|
("identical", "Byte identical"),
|
|
|
|
("linecount", "Line-by-line"),
|
|
|
|
("custom", "Custom checker (PY)"),
|
|
|
|
("customval", "Custom validator (CPP)"),
|
|
|
|
("interact", "Interactive"),
|
|
|
|
("testlib", "Testlib"),
|
|
|
|
],
|
|
|
|
max_length=10,
|
|
|
|
verbose_name="checker",
|
|
|
|
),
|
2022-06-22 07:28:34 +00:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2022-06-26 05:07:34 +00:00
|
|
|
model_name="problemtestcase",
|
|
|
|
name="checker",
|
|
|
|
field=models.CharField(
|
|
|
|
blank=True,
|
|
|
|
choices=[
|
|
|
|
("standard", "Standard"),
|
|
|
|
("floats", "Floats"),
|
|
|
|
("floatsabs", "Floats (absolute)"),
|
|
|
|
("floatsrel", "Floats (relative)"),
|
|
|
|
("rstripped", "Non-trailing spaces"),
|
|
|
|
("sorted", "Unordered"),
|
|
|
|
("identical", "Byte identical"),
|
|
|
|
("linecount", "Line-by-line"),
|
|
|
|
("custom", "Custom checker (PY)"),
|
|
|
|
("customval", "Custom validator (CPP)"),
|
|
|
|
("interact", "Interactive"),
|
|
|
|
("testlib", "Testlib"),
|
|
|
|
],
|
|
|
|
max_length=10,
|
|
|
|
verbose_name="checker",
|
|
|
|
),
|
2022-06-22 07:28:34 +00:00
|
|
|
),
|
|
|
|
]
|