diff --git a/src/core/migrations/0057_UniqueTogether2EventParticipant.py b/src/core/migrations/0057_UniqueTogether2EventParticipant.py new file mode 100644 index 0000000000000000000000000000000000000000..511826664350ce5030f4325bf60484e215f00037 --- /dev/null +++ b/src/core/migrations/0057_UniqueTogether2EventParticipant.py @@ -0,0 +1,17 @@ +# Generated by Django 3.1.4 on 2020-12-29 12:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0056_backoffice_users_perms'), + ] + + operations = [ + migrations.AlterUniqueTogether( + name='eventparticipant', + unique_together={('participant', 'event', 'role')}, + ), + ]