Skip to content

Commit b8d64a8

Browse files
Julian Baumannjeriox
authored andcommitted
separate data and schema migrations
1 parent b42045b commit b8d64a8

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

ephios/plugins/guests/migrations/0007_alter_guestuser_unique_together.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,4 @@ class Migration(migrations.Migration):
4040

4141
operations = [
4242
migrations.RunPython(deduplicate_guest_participations),
43-
migrations.AlterUniqueTogether(
44-
name="guestuser",
45-
unique_together={("event", "email")},
46-
),
4743
]
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.2.6 on 2025-09-11 22:41
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("core", "0038_eventtype_default_description"),
10+
("guests", "0007_alter_guestuser_unique_together"),
11+
]
12+
13+
operations = [
14+
migrations.AlterUniqueTogether(
15+
name="guestuser",
16+
unique_together={("event", "email")},
17+
),
18+
]

0 commit comments

Comments
 (0)