Skip to content

Commit d85b82f

Browse files
authored
Fix migration for postgres support. (#456)
Fix #457 Signed-off-by: Marcel Klehr <[email protected]>
1 parent 51cb410 commit d85b82f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/Migration/Version5000Date20241120135411.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ public function postSchemaChange(IOutput $output, Closure $schemaClosure, array
3434
// encrypt "haproxy_password" in the "ex_apps_daemons" table
3535
$qbSelect = $this->connection->getQueryBuilder();
3636
$qbSelect->select(['id', 'deploy_config'])
37-
->from('ex_apps_daemons')
38-
->where(1);
37+
->from('ex_apps_daemons');
3938
$req = $qbSelect->executeQuery();
4039

4140
while ($row = $req->fetch()) {

0 commit comments

Comments
 (0)