Remove bad migration file
This commit is contained in:
parent
04c6af1dff
commit
81a31eafa2
1 changed files with 0 additions and 37 deletions
|
@ -1,37 +0,0 @@
|
|||
# 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",
|
||||
),
|
||||
),
|
||||
],
|
||||
)
|
||||
]
|
Loading…
Reference in a new issue