You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
865 B
26 lines
865 B
# Generated by Django 4.2.11 on 2024-10-24 06:55
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tournaments', '0090_tournament_initial_seed_count_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='DrawLog',
|
|
fields=[
|
|
('id', models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False)),
|
|
('draw_date', models.DateTimeField()),
|
|
('draw_seed', models.IntegerField()),
|
|
('draw_match_index', models.IntegerField()),
|
|
('draw_team_position', models.IntegerField()),
|
|
('tournament', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='tournaments.tournament')),
|
|
],
|
|
),
|
|
]
|
|
|