feature/tourunament-classification #41

Merged
s470631 merged 3 commits from feature/tourunament-classification into master 2022-06-05 10:29:07 +02:00
2 changed files with 44 additions and 0 deletions
Showing only changes of commit 0ee61fdd66 - Show all commits

View File

@ -0,0 +1,26 @@
# Generated by Django 3.2.9 on 2022-06-04 15:02
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('trials', '0028_ratetest_ratetournament'),
]
operations = [
migrations.CreateModel(
name='TournamentClassification',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('score', models.IntegerField()),
('date', models.DateField()),
('tournament', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='tournament_classification', to='trials.tournament')),
('user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='tournament_classification', to=settings.AUTH_USER_MODEL)),
],
),
]

View File

@ -0,0 +1,18 @@
# Generated by Django 3.2.9 on 2022-06-04 15:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('trials', '0029_tournamentclassification'),
]
operations = [
migrations.AlterField(
model_name='tournamentclassification',
name='date',
field=models.DateField(auto_now_add=True),
),
]