Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ColonelPhantom committed Oct 25, 2023
1 parent 43dd402 commit e769596
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions website/activemembers/migrations/0044_alter_membergroup_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.2.6 on 2023-10-25 18:26

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("activemembers", "0043_membergroup_chair_permissions_and_more"),
]

operations = [
migrations.AlterModelOptions(
name="membergroup",
options={
"ordering": ["name"],
"verbose_name": "member group",
"verbose_name_plural": "member groups",
},
),
]

0 comments on commit e769596

Please sign in to comment.