Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
rm03 committed Jan 6, 2024
1 parent 6c26b15 commit be9ecee
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions backend/clubs/migrations/0092_auto_20240106_1119.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.18 on 2024-01-06 16:19

from django.conf import settings
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("clubs", "0091_applicationextension"),
]

operations = [
migrations.AlterUniqueTogether(
name="applicationquestionresponse",
unique_together={("question", "submission")},
),
migrations.AlterUniqueTogether(
name="applicationsubmission",
unique_together={("user", "application", "committee")},
),
]

0 comments on commit be9ecee

Please sign in to comment.