From 93fc8d821a4e36fa98454141199d4a4fa8c2d176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Fr=C3=B6hlich?= Date: Thu, 13 Nov 2025 16:55:22 +0100 Subject: [PATCH] fix: database.php changed --- config/database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/database.php b/config/database.php index 493c08a..4639e0d 100644 --- a/config/database.php +++ b/config/database.php @@ -100,7 +100,7 @@ return [ 'backend' => [ 'driver' => env('DB_CONNECTION2'), 'host' => env('DB_HOST2', '127.0.0.1'), - 'port' => env('DB_PORT2', '5433'), + 'port' => env('DB_PORT2', '5432'), 'database' => env('DB_DATABASE2', 'laravel'), 'username' => env('DB_USERNAME2', 'root'), 'password' => env('DB_PASSWORD2', ''), @@ -114,7 +114,7 @@ return [ 'pgsql_second' => [ 'driver' => env('DB_CONNECTION2'), 'host' => env('DB_HOST2', '127.0.0.1'), - 'port' => env('DB_PORT2', '5433'), + 'port' => env('DB_PORT2', '5432'), 'database' => env('DB_DATABASE2', 'laravel'), 'username' => env('DB_USERNAME2', 'root'), 'password' => env('DB_PASSWORD2', ''),