forked from DGNum/gestioCOF
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
|
# Generated by Django 3.2.13 on 2022-06-30 08:36
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("gestioncof", "0019_auto_20220628_1621"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name="eventregistration",
|
||
|
unique_together=set(),
|
||
|
),
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name="petitcoursability",
|
||
|
unique_together=set(),
|
||
|
),
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name="surveyanswer",
|
||
|
unique_together=set(),
|
||
|
),
|
||
|
migrations.AddConstraint(
|
||
|
model_name="eventregistration",
|
||
|
constraint=models.UniqueConstraint(
|
||
|
fields=("user", "event"), name="unique_event_registration"
|
||
|
),
|
||
|
),
|
||
|
migrations.AddConstraint(
|
||
|
model_name="petitcoursability",
|
||
|
constraint=models.UniqueConstraint(
|
||
|
fields=("user", "niveau", "matiere"), name="unique_competence_level"
|
||
|
),
|
||
|
),
|
||
|
migrations.AddConstraint(
|
||
|
model_name="surveyanswer",
|
||
|
constraint=models.UniqueConstraint(
|
||
|
fields=("user", "survey"), name="unique_survey_answer"
|
||
|
),
|
||
|
),
|
||
|
]
|