mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-27 00:07:11 +00:00
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
# Generated by Django 3.2.13 on 2022-05-15 14:40
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('participation', '0008_auto_20220429_1853'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Tweak',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('diff', models.IntegerField(help_text='Score to add/remove on the final score', verbose_name='difference')),
|
|
('participation', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='tweaks', to='participation.participation', verbose_name='participation')),
|
|
('pool', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='participation.pool', verbose_name='passage')),
|
|
],
|
|
options={
|
|
'verbose_name': 'tweak',
|
|
'verbose_name_plural': 'tweaks',
|
|
},
|
|
),
|
|
]
|