Skip to content

Commit a93913f

Browse files
authored
Merge pull request #459 from nextcloud/backport/456/stable29
[stable29] Fix migration for postgres support.
2 parents eae7e0c + c695e77 commit a93913f

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)