From caf719f1632944c46961b58f9462ef6914f7c607 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 15 Dec 2017 13:59:02 +0100 Subject: [PATCH] Fixed lower case tags migration --- app/DoctrineMigrations/Version20170719231144.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/DoctrineMigrations/Version20170719231144.php b/app/DoctrineMigrations/Version20170719231144.php index 9a6f3e93..86754033 100644 --- a/app/DoctrineMigrations/Version20170719231144.php +++ b/app/DoctrineMigrations/Version20170719231144.php @@ -75,7 +75,7 @@ class Version20170719231144 extends AbstractMigration implements ContainerAwareI WHERE tag_id IN (' . implode(',', $ids) . ') AND entry_id NOT IN ( SELECT entry_id - FROM ' . $this->getTable('entry_tag') . ' + FROM (SELECT * FROM ' . $this->getTable('entry_tag') . ') AS _entry_tag WHERE tag_id = ' . $newId . ' )' ); -- 2.41.0