19 lines
568 B
Python
19 lines
568 B
Python
|
# Generated by Django 3.1.7 on 2021-04-10 07:57
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('participation', '0004_passage_defender_penalties'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='pool',
|
||
|
name='results_available',
|
||
|
field=models.BooleanField(default=False, help_text='Check this case when results become accessible to teams. They stay accessible to you. Only averages are given.', verbose_name='results available'),
|
||
|
),
|
||
|
]
|