Skip to content

Commit

Permalink
Fix migration for postgres support.
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr authored Nov 29, 2024
1 parent 51cb410 commit 3858a65
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Migration/Version5000Date20241120135411.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ public function postSchemaChange(IOutput $output, Closure $schemaClosure, array
// encrypt "haproxy_password" in the "ex_apps_daemons" table
$qbSelect = $this->connection->getQueryBuilder();
$qbSelect->select(['id', 'deploy_config'])
->from('ex_apps_daemons')
->where(1);
->from('ex_apps_daemons');
$req = $qbSelect->executeQuery();

while ($row = $req->fetch()) {
Expand Down

0 comments on commit 3858a65

Please sign in to comment.