aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-12-15 13:59:02 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-12-15 13:59:02 +0100
commitcaf719f1632944c46961b58f9462ef6914f7c607 (patch)
tree9a08f4433f64fa7e3337fc5297120b5730700064
parenta68a80f654be86ae25d49420b86099302ce55bb6 (diff)
downloadwallabag-caf719f1632944c46961b58f9462ef6914f7c607.tar.gz
wallabag-caf719f1632944c46961b58f9462ef6914f7c607.tar.zst
wallabag-caf719f1632944c46961b58f9462ef6914f7c607.zip
Fixed lower case tags migration
-rw-r--r--app/DoctrineMigrations/Version20170719231144.php2
1 files changed, 1 insertions, 1 deletions
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
75 WHERE tag_id IN (' . implode(',', $ids) . ') 75 WHERE tag_id IN (' . implode(',', $ids) . ')
76 AND entry_id NOT IN ( 76 AND entry_id NOT IN (
77 SELECT entry_id 77 SELECT entry_id
78 FROM ' . $this->getTable('entry_tag') . ' 78 FROM (SELECT * FROM ' . $this->getTable('entry_tag') . ') AS _entry_tag
79 WHERE tag_id = ' . $newId . ' 79 WHERE tag_id = ' . $newId . '
80 )' 80 )'
81 ); 81 );