From c293c3911810e5833b85e13e4154a9a11222b1b4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 21 Mar 2016 16:36:30 +0000 Subject: [PATCH] Sync up the database config --- config/database.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/database.php b/config/database.php index a1465313..8859e79e 100644 --- a/config/database.php +++ b/config/database.php @@ -67,11 +67,12 @@ return [ 'database' => env('DB_DATABASE', null), 'username' => env('DB_USERNAME', null), 'password' => env('DB_PASSWORD', null), - 'port' => env('DB_PORT', null), + 'port' => env('DB_PORT', '3306'), 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => false, + 'engine' => null, ], 'pgsql' => [ @@ -80,7 +81,7 @@ return [ 'database' => env('DB_DATABASE', null), 'username' => env('DB_USERNAME', null), 'password' => env('DB_PASSWORD', null), - 'port' => env('DB_PORT', null), + 'port' => env('DB_PORT', '5432'), 'charset' => 'utf8', 'prefix' => '', 'schema' => 'public',