19 lines
431 B
Python
19 lines
431 B
Python
# Generated by Django 3.0.11 on 2021-01-01 10:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('participation', '0003_tournament_max_teams'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='tournament',
|
|
name='price',
|
|
field=models.PositiveSmallIntegerField(default=21, verbose_name='price'),
|
|
),
|
|
]
|