diff --git a/home/migrations/0041_contentpage_whatsapp_template_lower_case_name.py b/home/migrations/0041_contentpage_whatsapp_template_lower_case_name.py index 59f01078..c24a8104 100644 --- a/home/migrations/0041_contentpage_whatsapp_template_lower_case_name.py +++ b/home/migrations/0041_contentpage_whatsapp_template_lower_case_name.py @@ -1,6 +1,6 @@ # Generated by Django 4.1.13 on 2024-01-08 10:11 -from django.db import migrations +from django.db import migrations, models def update_template_names(ContentPage, ContentType, Revision): @@ -29,7 +29,7 @@ def run_migration(apps, schema_editor): ContentType = apps.get_model("contenttypes", "ContentType") ContentPage = apps.get_model("home", "ContentPage") Revision = apps.get_model("wagtailcore", "Revision") - update_template_names(ContentType, ContentPage, Revision) + update_template_names(ContentPage, ContentType, Revision) class Migration(migrations.Migration):