From 74c5a01b09b24950cfcffbbc3bad9c2749f7388b Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Tue, 19 Sep 2023 16:15:38 +0200 Subject: [PATCH] Let database handle default collation (#6241) --- config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.php b/config/database.php index 137ad18c..8cd8ed07 100644 --- a/config/database.php +++ b/config/database.php @@ -53,7 +53,7 @@ 'password' => env('DB_PASSWORD', ''), 'unix_socket' => env('DB_SOCKET', ''), 'charset' => 'utf8mb4', - 'collation' => 'utf8mb4_unicode_ci', + 'collation' => null, 'prefix' => '', 'prefix_indexes' => true, 'strict' => true,