Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2021-10-22 19:36:55 +0300
committerAleksander Machniak <alec@alec.pl>2021-10-24 16:57:25 +0300
commitb8f32f087d91271a054669d41e315892374a024c (patch)
tree3c46bc8777b5565c6a77a9cb4330a25fa465560c
parent8a275b7ff35745d8fda23a5dd24d8b95b22712f0 (diff)
Use utf8mb4 in INSTALL instructions
[skip ci]
-rw-r--r--INSTALL2
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
index e2666321a..fe1800e62 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