2020-12-31 11:13:42 +00:00
|
|
|
# Generated by Django 3.0.11 on 2020-12-30 12:02
|
2020-12-28 18:30:51 +00:00
|
|
|
|
2020-12-31 11:13:42 +00:00
|
|
|
import address.models
|
2020-12-28 18:30:51 +00:00
|
|
|
from django.db import migrations, models
|
|
|
|
import django.db.models.deletion
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
initial = True
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('registration', '0001_initial'),
|
2020-12-31 11:13:42 +00:00
|
|
|
('address', '0003_auto_20200830_1851'),
|
|
|
|
('participation', '0001_initial'),
|
2020-12-28 18:30:51 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='tournament',
|
|
|
|
name='organizers',
|
|
|
|
field=models.ManyToManyField(related_name='organized_tournaments', to='registration.VolunteerRegistration', verbose_name='organizers'),
|
|
|
|
),
|
2020-12-31 11:13:42 +00:00
|
|
|
migrations.AddField(
|
|
|
|
model_name='tournament',
|
|
|
|
name='place',
|
|
|
|
field=address.models.AddressField(on_delete=django.db.models.deletion.CASCADE, to='address.Address', verbose_name='place'),
|
|
|
|
),
|
2020-12-28 18:30:51 +00:00
|
|
|
migrations.AddIndex(
|
|
|
|
model_name='team',
|
|
|
|
index=models.Index(fields=['trigram'], name='participati_trigram_239255_idx'),
|
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='synthesis',
|
|
|
|
name='participation',
|
2020-12-31 11:13:42 +00:00
|
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='participation.Participation', verbose_name='participation'),
|
2020-12-28 18:30:51 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='synthesis',
|
|
|
|
name='pool',
|
2020-12-31 11:13:42 +00:00
|
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='syntheses', to='participation.Pool', verbose_name='pool'),
|
2020-12-28 18:30:51 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='solution',
|
|
|
|
name='participation',
|
2020-12-31 11:13:42 +00:00
|
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='solutions', to='participation.Participation', verbose_name='participation'),
|
2020-12-28 18:30:51 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='pool',
|
|
|
|
name='juries',
|
|
|
|
field=models.ManyToManyField(related_name='jury_in', to='registration.VolunteerRegistration', verbose_name='juries'),
|
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='pool',
|
|
|
|
name='participations',
|
|
|
|
field=models.ManyToManyField(related_name='pools', to='participation.Participation', verbose_name='participations'),
|
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='pool',
|
|
|
|
name='tournament',
|
2020-12-31 11:13:42 +00:00
|
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='pools', to='participation.Tournament', verbose_name='tournament'),
|
2020-12-28 18:30:51 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='participation',
|
|
|
|
name='team',
|
2020-12-31 11:13:42 +00:00
|
|
|
field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to='participation.Team', verbose_name='team'),
|
2020-12-28 18:30:51 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='participation',
|
|
|
|
name='tournament',
|
2020-12-31 11:13:42 +00:00
|
|
|
field=models.ForeignKey(blank=True, default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, to='participation.Tournament', verbose_name='tournament'),
|
2020-12-28 18:30:51 +00:00
|
|
|
),
|
|
|
|
migrations.AddIndex(
|
|
|
|
model_name='tournament',
|
|
|
|
index=models.Index(fields=['name', 'date_start', 'date_end'], name='participati_name_b43174_idx'),
|
|
|
|
),
|
|
|
|
migrations.AlterUniqueTogether(
|
|
|
|
name='synthesis',
|
|
|
|
unique_together={('participation', 'pool', 'type')},
|
|
|
|
),
|
|
|
|
migrations.AlterUniqueTogether(
|
|
|
|
name='solution',
|
|
|
|
unique_together={('participation', 'problem', 'final_solution')},
|
|
|
|
),
|
|
|
|
]
|