Update migration version check

[MAILPOET-3951]
This commit is contained in:
Rostislav Wolny
2022-01-18 17:24:51 +01:00
committed by Veljko V
parent 94fbb62479
commit 1a7f6328dc

View File

@ -861,8 +861,8 @@ class Migrator {
private function migrateEmailActionsFilters(): bool { private function migrateEmailActionsFilters(): bool {
global $wpdb; global $wpdb;
// skip the migration if the DB version is higher than 3.76.0 or is not set (a new installation) // 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.76.1'), '3.76.0', '>')) { if (version_compare($this->settings->get('db_version', '3.77.1'), '3.77.0', '>')) {
return false; return false;
} }