Skip to content

Commit

Permalink
fix migration execute statement
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
  • Loading branch information
Grotax committed Aug 18, 2022
1 parent 2b97e52 commit c3763b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Migration/Version150005Date20201009192341.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $
$qb->update('news_feeds')
->set('folder_id', $qb->createPositionalParameter(null, IQueryBuilder::PARAM_NULL))
->where('folder_id = 0')
->execute();
->executeStatement();

$feed_name = $this->connection->getQueryBuilder()->getTableName('news_feeds');
$folder_name = $this->connection->getQueryBuilder()->getTableName('news_folders');
Expand Down

0 comments on commit c3763b0

Please sign in to comment.