Skip to content

Commit

Permalink
migr: remove fields is_chapter and is_technical
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhruv9449 committed Mar 27, 2024
1 parent 8134afe commit d993b64
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ class Migration(migrations.Migration):
name='userorganizationrelation',
options={'verbose_name': 'User Organization relation', 'verbose_name_plural': 'User Organization relations'},
),
migrations.RenameField(
model_name='event',
old_name='organization',
new_name='organizing_body',
),
migrations.RemoveField(
model_name='organization',
name='is_chapter',
Expand All @@ -49,8 +44,4 @@ class Migration(migrations.Migration):
name='user',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='user_organization_relations', to=settings.AUTH_USER_MODEL),
),
migrations.AlterUniqueTogether(
name='event',
unique_together={('name', 'organizing_body')},
),
]

0 comments on commit d993b64

Please sign in to comment.