Add file io
This commit is contained in:
parent
c9091f2e75
commit
a1bcc2cb46
7 changed files with 154 additions and 80 deletions
23
judge/migrations/0124_auto_20220602_1116.py
Normal file
23
judge/migrations/0124_auto_20220602_1116.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 2.2.25 on 2022-06-02 04:16
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('judge', '0123_auto_20220502_2356'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='problemdata',
|
||||
name='fileio_input',
|
||||
field=models.TextField(blank=True, null=True, verbose_name='input file name'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='problemdata',
|
||||
name='fileio_output',
|
||||
field=models.TextField(blank=True, null=True, verbose_name='output file name'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue