From 4e849079730e5dd447d9ccf3c3c55c69552b695e Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Thu, 24 Jul 2014 22:11:55 +1000 Subject: [PATCH] Refs https://github.com/octobercms/install/pull/37 Add port to default config --- app/config/database.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/config/database.php b/app/config/database.php index d79cb0441..fa82fbbf3 100644 --- a/app/config/database.php +++ b/app/config/database.php @@ -55,6 +55,7 @@ return array( 'mysql' => array( 'driver' => 'mysql', 'host' => 'localhost', + 'port' => '', 'database' => 'database', 'username' => 'root', 'password' => '', @@ -66,6 +67,7 @@ return array( 'pgsql' => array( 'driver' => 'pgsql', 'host' => 'localhost', + 'port' => '', 'database' => 'database', 'username' => 'root', 'password' => '', @@ -77,6 +79,7 @@ return array( 'sqlsrv' => array( 'driver' => 'sqlsrv', 'host' => 'localhost', + 'port' => '', 'database' => 'database', 'username' => 'root', 'password' => '',