Skip to content

Commit

Permalink
migr: fix stupid broken migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhruv9449 committed Apr 9, 2024
1 parent 3d90ee8 commit 56f0be6
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.0.10 on 2024-04-09 06:00

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('core', '0016_alter_organization_options_and_more'),
]

operations = [
migrations.RenameField(
model_name='event',
old_name='organization',
new_name='organizing_body',
),
migrations.AlterUniqueTogether(
name='event',
unique_together={('name', 'organizing_body')},
),
]

0 comments on commit 56f0be6

Please sign in to comment.