25 lines
779 B
Python
25 lines
779 B
Python
# Generated by Django 3.0.11 on 2021-01-01 10:49
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('participation', '0004_tournament_price'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='tournament',
|
|
name='solutions_available_second_phase',
|
|
field=models.DateTimeField(default=django.utils.timezone.now, verbose_name='date when the solutions for the second round become available'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='tournament',
|
|
name='solutions_draw',
|
|
field=models.DateTimeField(default=django.utils.timezone.now, verbose_name='random draw for solutions'),
|
|
),
|
|
]
|