Skip to content

Commit

Permalink
Fixed lower case tags migration
Browse files Browse the repository at this point in the history
  • Loading branch information
nicosomb committed Dec 15, 2017
1 parent a68a80f commit caf719f
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
Expand Up @@ -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 . '
)'
);
Expand Down

0 comments on commit caf719f

Please sign in to comment.