Merge pull request #91 from iquad/patch-1

Add `db_charset` to fix postgresql installation error.
This commit is contained in:
Denis Duliçi 2017-11-22 18:06:36 +03:00 committed by GitHub
commit 7b9b3ca295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,7 @@ class Database extends Controller
'password' => $request['password'],
'driver' => env('DB_CONNECTION', 'mysql'),
'port' => env('DB_PORT', '3306'),
'charset' => env('DB_CHARSET', 'utf8mb4'),
]);
try {