From 7d3ee9f0c4d9ecf45d3786320a3bb23a8fed3d39 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 5 Oct 2023 16:50:48 +0200 Subject: [PATCH] Possible fix for https://github.com/firefly-iii/firefly-iii/issues/8004 --- config/database.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/database.php b/config/database.php index af30a9f4f4..cb181adbd7 100644 --- a/config/database.php +++ b/config/database.php @@ -105,6 +105,7 @@ return [ 'charset' => 'utf8', 'prefix' => '', 'search_path' => envNonEmpty('PGSQL_SCHEMA', 'public'), + 'schema' => envNonEmpty('PGSQL_SCHEMA', 'public'), 'sslmode' => envNonEmpty('PGSQL_SSL_MODE', 'prefer'), 'sslcert' => envNonEmpty('PGSQL_SSL_CERT'), 'sslkey' => envNonEmpty('PGSQL_SSL_KEY'),