Test Formatter 1st commit

This commit is contained in:
BaoLe106 2023-12-23 14:26:03 +08:00
parent 0403c4be31
commit 3d59aa4809
13 changed files with 925 additions and 0 deletions

View file

@ -0,0 +1,37 @@
# Generated by Django 3.2.20 on 2023-11-21 07:22
from django.db import migrations, models
import judge.models.test_formatter
class Migration(migrations.Migration):
dependencies = [
("judge", "0173_fulltext"),
]
operations = [
migrations.CreateModel(
name="TestFormatterModel",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
(
"file",
models.FileField(
blank=True,
null=True,
upload_to=judge.models.test_formatter.test_formatter_path,
verbose_name="testcase file",
),
),
],
)
]