From 824ce313fa961e34b23887fccde7cbf22280e494 Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Fri, 11 May 2018 10:33:36 -0500 Subject: [PATCH] Don't require mysql 5.5 or newer. (#8695) Don't support emoji in strings :) --- config/database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/database.php b/config/database.php index 35746de831..bfbfd3afc8 100644 --- a/config/database.php +++ b/config/database.php @@ -51,8 +51,8 @@ return [ 'username' => env('DB_USERNAME', $fallback_db_config['db_user']), 'password' => env('DB_PASSWORD', $fallback_db_config['db_pass']), 'unix_socket' => env('DB_SOCKET', $fallback_db_config['db_socket']), - 'charset' => 'utf8mb4', - 'collation' => 'utf8mb4_unicode_ci', + 'charset' => 'utf8', + 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => true, 'engine' => null,