Skip to content

Commit

Permalink
fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvolo committed Jan 8, 2025
1 parent 1d4a871 commit 29376a4
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
17 changes: 17 additions & 0 deletions donations/migrations/0009_alter_thankyounote_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.1.1 on 2025-01-08 23:01

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("donations", "0008_thankyounote_source"),
]

operations = [
migrations.AlterModelOptions(
name="thankyounote",
options={"verbose_name": "Thank You Note", "verbose_name_plural": "Thank You Notes"},
),
]
17 changes: 17 additions & 0 deletions pages/migrations/0153_alter_homepage_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.1.1 on 2025-01-08 23:01

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("pages", "0152_alter_rootpage_body_alter_rootpage_layout"),
]

operations = [
migrations.AlterModelOptions(
name="homepage",
options={"verbose_name": "Home Page"},
),
]

0 comments on commit 29376a4

Please sign in to comment.