forked from DGNum/gestioCOF
24 lines
581 B
Python
24 lines
581 B
Python
|
# Generated by Django 3.2.13 on 2022-06-30 08:35
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("bda", "0019_auto_20220628_1621"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name="choixspectacle",
|
||
|
unique_together=set(),
|
||
|
),
|
||
|
migrations.AddConstraint(
|
||
|
model_name="choixspectacle",
|
||
|
constraint=models.UniqueConstraint(
|
||
|
fields=("participant", "spectacle"), name="unique_participation"
|
||
|
),
|
||
|
),
|
||
|
]
|