Made DB_COLLATION value changable from .env file .

This commit is contained in:
erhanask 2022-08-29 11:28:36 +03:00
parent 721da8e1be
commit b9c175c464

View File

@ -60,7 +60,7 @@ return [
'username' => env('DB_USERNAME', 'forge'), 'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''), 'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8', 'charset' => 'utf8',
'collation' => 'utf8_unicode_ci', 'collation' => env('DB_COLLATION', 'utf8_unicode_ci'),
'prefix' => env('DB_PREFIX', ''), 'prefix' => env('DB_PREFIX', ''),
'strict' => false, 'strict' => false,
'engine' => env('DB_ENGINE'), 'engine' => env('DB_ENGINE'),