Skip to content

Commit c088b3b

Browse files
authored
Fix incorrect collation for MySQL 8 (laravel#6239)
1 parent bfead27 commit c088b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
'password' => env('DB_PASSWORD', ''),
5454
'unix_socket' => env('DB_SOCKET', ''),
5555
'charset' => 'utf8mb4',
56-
'collation' => 'utf8mb4_unicode_ci',
56+
'collation' => 'utf8mb4_0900_ai_ci',
5757
'prefix' => '',
5858
'prefix_indexes' => true,
5959
'strict' => true,

0 commit comments

Comments
 (0)