NDOJ/judge/migrations/0113_auto_20201228_0911.py

32 lines
1.1 KiB
Python
Raw Normal View History

2020-12-28 02:27:03 +00:00
# Generated by Django 2.2.17 on 2020-12-28 02:11
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
2022-05-14 17:57:27 +00:00
("judge", "0112_contest_view_contest_scoreboard"),
2020-12-28 02:27:03 +00:00
]
operations = [
migrations.AlterModelOptions(
2022-05-14 17:57:27 +00:00
name="contest",
options={
"permissions": (
("see_private_contest", "See private contests"),
("edit_own_contest", "Edit own contests"),
("edit_all_contest", "Edit all contests"),
("clone_contest", "Clone contest"),
("moss_contest", "MOSS contest"),
("contest_rating", "Rate contests"),
("contest_access_code", "Contest access codes"),
("create_private_contest", "Create private contests"),
("change_contest_visibility", "Change contest visibility"),
),
"verbose_name": "contest",
"verbose_name_plural": "contests",
},
2020-12-28 02:27:03 +00:00
),
]