Merge pull request #1323 from openclassify/erhanask

Made DB_COLLATION value changable from .env file .
This commit is contained in:
Vedat AKDOĞAN 2022-08-29 11:46:23 +03:00 committed by GitHub
commit b3acca94e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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'),