34 lines
986 B
Python
34 lines
986 B
Python
# Generated by Django 6.0.4 on 2026-05-09 08:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("submission", "0004_submission_problem_user_idx"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="submission",
|
|
name="result",
|
|
field=models.IntegerField(
|
|
choices=[
|
|
(-2, "Compile Error"),
|
|
(-1, "Wrong Answer"),
|
|
(0, "Accepted"),
|
|
(1, "CPU Time Limit Exceeded"),
|
|
(2, "Real Time Limit Exceeded"),
|
|
(3, "Memory Limit Exceeded"),
|
|
(4, "Runtime Error"),
|
|
(5, "System Error"),
|
|
(6, "Pending"),
|
|
(7, "Judging"),
|
|
(8, "Partially Accepted"),
|
|
],
|
|
db_index=True,
|
|
default=6,
|
|
),
|
|
),
|
|
]
|