mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 02:51:04 +00:00
Fixed lower case tags migration
This commit is contained in:
parent
a68a80f654
commit
caf719f163
1 changed files with 1 additions and 1 deletions
|
@ -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 . '
|
||||
)'
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue