19 lines
495 B
Python
19 lines
495 B
Python
# Generated by Django 3.0.11 on 2021-01-12 16:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('participation', '0005_auto_20210101_1149'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='participation',
|
|
name='final',
|
|
field=models.BooleanField(default=False, help_text='The team is selected for the final tournament.', verbose_name='selected for final'),
|
|
),
|
|
]
|