Reverting database.php and app.php

This commit is contained in:
Abijeet 2017-08-23 00:52:50 +05:30
parent 6920d6eef1
commit 769935f99e
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ return [
|
*/
'debug' => env('APP_DEBUG', true),
'debug' => env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------

View File

@ -79,9 +79,9 @@ return [
'mysql' => [
'driver' => 'mysql',
'host' => $mysql_host,
'database' => env('DB_DATABASE', 'bookstack'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', 'Change123'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'port' => $mysql_port,
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',