19 lines
397 B
Python
19 lines
397 B
Python
|
# Generated by Django 3.2.9 on 2022-05-24 21:53
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('trials', '0025_tournament_passing_score'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='tournament',
|
||
|
name='completions',
|
||
|
field=models.IntegerField(default=0),
|
||
|
),
|
||
|
]
|