From 3ecef7e4fc9f362fc3d8ef9e6ef4f127ad34332b Mon Sep 17 00:00:00 2001 From: Rostislav Wolny Date: Tue, 26 Oct 2021 09:02:57 +0200 Subject: [PATCH] Update version check for newsletter thumbnails data migration [MAILPOET-2686] --- lib/Config/Populator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Config/Populator.php b/lib/Config/Populator.php index 317c41d121..aa0f5e264d 100644 --- a/lib/Config/Populator.php +++ b/lib/Config/Populator.php @@ -916,7 +916,7 @@ class Populator { } private function moveNewsletterTemplatesThumbnailData() { - 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; } $newsletterTemplatesTable = $this->entityManager->getClassMetadata(NewsletterTemplateEntity::class)->getTableName();