Skip to content

Commit

Permalink
Include missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
lakridserne committed May 26, 2024
1 parent b45932d commit c03841d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions members/migrations/0053_alter_emailitem_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 4.2.11 on 2024-05-26 17:17

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("members", "0052_alter_activity_address"),
]

operations = [
migrations.AlterModelOptions(
name="emailitem",
options={
"ordering": ["-created_dtm"],
"verbose_name": "Afsendt email",
"verbose_name_plural": "Afsendte emails",
},
),
]

0 comments on commit c03841d

Please sign in to comment.