From 96d3ecf5c26577530306374eb8e164fdc7425978 Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Sat, 16 Sep 2023 00:29:57 +0200 Subject: [PATCH] Revert "Fix incorrect collation for MySQL 8 (#6239)" (#6240) This reverts commit c088b3b7655fd2bc8c53d883f90f53e65bacc3e7. --- config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.php b/config/database.php index 9d202c36..137ad18c 100644 --- a/config/database.php +++ b/config/database.php @@ -53,7 +53,7 @@ return [ 'password' => env('DB_PASSWORD', ''), 'unix_socket' => env('DB_SOCKET', ''), 'charset' => 'utf8mb4', - 'collation' => 'utf8mb4_0900_ai_ci', + 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, 'strict' => true,