2022-06-02 04:59:46 +00:00
|
|
|
# Generated by Django 2.2.25 on 2022-06-02 04:16
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2022-06-02 05:20:45 +00:00
|
|
|
("judge", "0123_auto_20220502_2356"),
|
2022-06-02 04:59:46 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2022-06-02 05:20:45 +00:00
|
|
|
model_name="problemdata",
|
|
|
|
name="fileio_input",
|
|
|
|
field=models.TextField(
|
|
|
|
blank=True, null=True, verbose_name="input file name"
|
|
|
|
),
|
2022-06-02 04:59:46 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2022-06-02 05:20:45 +00:00
|
|
|
model_name="problemdata",
|
|
|
|
name="fileio_output",
|
|
|
|
field=models.TextField(
|
|
|
|
blank=True, null=True, verbose_name="output file name"
|
|
|
|
),
|
2022-06-02 04:59:46 +00:00
|
|
|
),
|
|
|
|
]
|