2020-01-21 06:35:58 +00:00
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2022-05-14 17:57:27 +00:00
|
|
|
("judge", "0093_contest_moss"),
|
2020-01-21 06:35:58 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterUniqueTogether(
|
2022-05-14 17:57:27 +00:00
|
|
|
name="submissiontestcase",
|
|
|
|
unique_together={("submission", "case")},
|
2020-01-21 06:35:58 +00:00
|
|
|
),
|
|
|
|
]
|