From 1a7f6328dc9a2bc5fb2a8e0ec694570397f72996 Mon Sep 17 00:00:00 2001 From: Rostislav Wolny Date: Tue, 18 Jan 2022 17:24:51 +0100 Subject: [PATCH] Update migration version check [MAILPOET-3951] --- mailpoet/lib/Config/Migrator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailpoet/lib/Config/Migrator.php b/mailpoet/lib/Config/Migrator.php index 1d635c130e..87a4278744 100644 --- a/mailpoet/lib/Config/Migrator.php +++ b/mailpoet/lib/Config/Migrator.php @@ -861,8 +861,8 @@ class Migrator { private function migrateEmailActionsFilters(): bool { global $wpdb; - // skip the migration if the DB version is higher than 3.76.0 or is not set (a new installation) - if (version_compare($this->settings->get('db_version', '3.76.1'), '3.76.0', '>')) { + // skip the migration if the DB version is higher than 3.77.0 or is not set (a new installation) + if (version_compare($this->settings->get('db_version', '3.77.1'), '3.77.0', '>')) { return false; }