mysql: Use utf8mb4 character set

This commit is contained in:
Girish Ramakrishnan
2017-04-14 12:30:47 -07:00
parent ba56f7d15d
commit bb91faf23c
2 changed files with 30 additions and 0 deletions
+16
View File
@@ -8,3 +8,19 @@ max_connections=50
# on ec2, without this we get a sporadic connection drop when doing the initial migration
max_allowed_packet=32M
# https://mathiasbynens.be/notes/mysql-utf8mb4
character-set-server = utf8mb4
collation-server = utf8mb4_unicode_ci
[mysqldump]
quick
quote-names
max_allowed_packet = 16M
default-character-set = utf8mb4
[mysql]
default-character-set = utf8mb4
[client]
default-character-set = utf8mb4