From 35e8d43c090c0d1f40bc0d84c57c55cf37c1af12 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 23 Aug 2022 18:42:18 +0100 Subject: [PATCH] Fix migration dependency for Wagtail <4 --- bakerydemo/base/migrations/0009_auto_20220823_1659.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bakerydemo/base/migrations/0009_auto_20220823_1659.py b/bakerydemo/base/migrations/0009_auto_20220823_1659.py index fbd3606..924590a 100644 --- a/bakerydemo/base/migrations/0009_auto_20220823_1659.py +++ b/bakerydemo/base/migrations/0009_auto_20220823_1659.py @@ -9,7 +9,7 @@ import wagtail_editable_help.models class Migration(migrations.Migration): dependencies = [ - ('wagtailcore', '0076_modellogentry_revision'), + ('wagtailcore', '0040_page_draft_title'), ('wagtailimages', '0024_index_image_file_hash'), ('base', '0008_use_json_field_for_body_streamfield'), ]