Fix version for migration data for dynamic filters

[MAILPOET-3910]
This commit is contained in:
Jan Lysý
2021-11-04 09:56:01 +01:00
committed by wxa
parent ad261eb02a
commit 39c9d543da

View File

@@ -702,8 +702,8 @@ class Migrator {
private function migrateSerializedFilterDataToNewColumns(): bool { private function migrateSerializedFilterDataToNewColumns(): bool {
global $wpdb; global $wpdb;
// skip the migration if the DB version is higher than 3.71.3 or is not set (a new install) // skip the migration if the DB version is higher than 3.73.1 or is not set (a new install)
if (version_compare($this->settings->get('db_version', '3.71.4'), '3.71.3', '>')) { if (version_compare($this->settings->get('db_version', '3.73.1'), '3.73.0', '>')) {
return false; return false;
} }