From 158d70dc7a43d5185c84db4493a66fa53cccd087 Mon Sep 17 00:00:00 2001 From: Oluwaseun Olorunsola Date: Thu, 16 Dec 2021 14:15:20 +0100 Subject: [PATCH] Update DB version check [MAILPOET-3953] --- lib/Config/Migrator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Config/Migrator.php b/lib/Config/Migrator.php index 4b08a61d83..d158acec1d 100644 --- a/lib/Config/Migrator.php +++ b/lib/Config/Migrator.php @@ -778,8 +778,8 @@ class Migrator { private function migratePurchasedInCategoryDynamicFilters(): bool { global $wpdb; - // skip the migration if the DB version is higher than 3.74.4 or is not set (a new install) - if (version_compare($this->settings->get('db_version', '3.74.4'), '3.74.3', '>')) { + // skip the migration if the DB version is higher than 3.75.1 or is not set (a new install) + if (version_compare($this->settings->get('db_version', '3.75.1'), '3.75.0', '>')) { return false; }