From 158682ffd72db2e8a905f3e28f2db1615a64f5ab Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Fri, 22 Oct 2021 18:36:55 +0200 Subject: [PATCH] Use utf8mb4 in INSTALL instructions [skip ci] --- INSTALL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL b/INSTALL index 49929ba1b4b..1837e1f9c22 100644 --- a/INSTALL +++ b/INSTALL @@ -100,7 +100,7 @@ importing the table layout and granting the proper permissions to the roundcube user. Here is an example of that procedure: # mysql -> CREATE DATABASE roundcubemail CHARACTER SET utf8 COLLATE utf8_general_ci; +> CREATE DATABASE roundcubemail CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; > CREATE USER roundcube@localhost IDENTIFIED BY 'password'; > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost; > quit