Fix utf encoding on DB

This commit is contained in:
snipe 2017-01-26 04:52:38 -08:00
parent d02a7064e3
commit 863735a6e5

View file

@ -64,8 +64,8 @@ return [
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => env('DB_PREFIX', null),
'strict' => false,
'engine' => null,