21 lines
539 B
Python
21 lines
539 B
Python
# Generated by Django 5.2.7 on 2026-05-21 10:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("opus_magnum", "0013_steamcollectionitem_points_value"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="steamcollection",
|
|
name="accepting_submissions",
|
|
field=models.BooleanField(
|
|
default=True,
|
|
help_text="Whether the tournament is accepting new submissions",
|
|
),
|
|
),
|
|
]
|