From 3858a65171786f97a7c4d5305a2b6b7aef5895c6 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Fri, 29 Nov 2024 09:10:25 +0100 Subject: [PATCH] Fix migration for postgres support. Signed-off-by: Marcel Klehr --- lib/Migration/Version5000Date20241120135411.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Migration/Version5000Date20241120135411.php b/lib/Migration/Version5000Date20241120135411.php index 820a4e65..514b5e05 100644 --- a/lib/Migration/Version5000Date20241120135411.php +++ b/lib/Migration/Version5000Date20241120135411.php @@ -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()) {