Update Woo Subcriptions segments filter data migration version

[MAILPOET-3956]
This commit is contained in:
Rostislav Wolny 2021-12-16 14:34:51 +01:00 committed by Veljko V
parent 944e62f66e
commit e51c2586f5

View File

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