Skip to content

Commit

Permalink
Merge pull request wallabag#3507 from wallabag/fix-lowercase-migration
Browse files Browse the repository at this point in the history
Fixed lower case tags migration
nicosomb authored Dec 16, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 9b60672 + caf719f commit 64e7c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/DoctrineMigrations/Version20170719231144.php
Original file line number Diff line number Diff line change
@@ -75,7 +75,7 @@ public function up(Schema $schema)
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 . '
)'
);

0 comments on commit 64e7c90

Please sign in to comment.