Sync up the database config
This commit is contained in:
+3
-2
@@ -67,11 +67,12 @@ return [
|
|||||||
'database' => env('DB_DATABASE', null),
|
'database' => env('DB_DATABASE', null),
|
||||||
'username' => env('DB_USERNAME', null),
|
'username' => env('DB_USERNAME', null),
|
||||||
'password' => env('DB_PASSWORD', null),
|
'password' => env('DB_PASSWORD', null),
|
||||||
'port' => env('DB_PORT', null),
|
'port' => env('DB_PORT', '3306'),
|
||||||
'charset' => 'utf8',
|
'charset' => 'utf8',
|
||||||
'collation' => 'utf8_unicode_ci',
|
'collation' => 'utf8_unicode_ci',
|
||||||
'prefix' => '',
|
'prefix' => '',
|
||||||
'strict' => false,
|
'strict' => false,
|
||||||
|
'engine' => null,
|
||||||
],
|
],
|
||||||
|
|
||||||
'pgsql' => [
|
'pgsql' => [
|
||||||
@@ -80,7 +81,7 @@ return [
|
|||||||
'database' => env('DB_DATABASE', null),
|
'database' => env('DB_DATABASE', null),
|
||||||
'username' => env('DB_USERNAME', null),
|
'username' => env('DB_USERNAME', null),
|
||||||
'password' => env('DB_PASSWORD', null),
|
'password' => env('DB_PASSWORD', null),
|
||||||
'port' => env('DB_PORT', null),
|
'port' => env('DB_PORT', '5432'),
|
||||||
'charset' => 'utf8',
|
'charset' => 'utf8',
|
||||||
'prefix' => '',
|
'prefix' => '',
|
||||||
'schema' => 'public',
|
'schema' => 'public',
|
||||||
|
|||||||
Reference in New Issue
Block a user