diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-12-16 09:02:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-16 09:02:56 +0100 |
commit | 64e7c90ae92d9d11a614dd1b5b260565f2d2bf5c (patch) | |
tree | a9f73933663ff4e2435c8b3c87d0a953fe09f1bd | |
parent | 9b606725fe7cb060433fd08a52cf49799734eda9 (diff) | |
parent | caf719f1632944c46961b58f9462ef6914f7c607 (diff) | |
download | wallabag-64e7c90ae92d9d11a614dd1b5b260565f2d2bf5c.tar.gz wallabag-64e7c90ae92d9d11a614dd1b5b260565f2d2bf5c.tar.zst wallabag-64e7c90ae92d9d11a614dd1b5b260565f2d2bf5c.zip |
Merge pull request #3507 from wallabag/fix-lowercase-migration
Fixed lower case tags migration
-rw-r--r-- | app/DoctrineMigrations/Version20170719231144.php | 2 |
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 | ); |