Skip to content

Commit

Permalink
Change default mysql collation to utf8mb4_general_ci (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed May 22, 2020
1 parent 6f3f0fc commit 447c2b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion containers/ddev-dbserver/files/etc/my.cnf
Expand Up @@ -37,7 +37,8 @@ expire-logs-days = 1
log_bin_trust_function_creators=on

character-set-server = utf8mb4
collation-server = utf8mb4_bin
collation-server = utf8mb4_general_ci
init_connect='SET collation_connection = utf8mb4_unicode_ci'

# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Expand Up @@ -51,7 +51,7 @@ var WebTag = "v1.14.2" // Note that this can be overridden by make
var DBImg = "drud/ddev-dbserver"

// BaseDBTag is the main tag, DBTag is constructed from it
var BaseDBTag = "v1.14.1"
var BaseDBTag = "20200427_mysql_collation"

// DBAImg defines the default phpmyadmin image tag used for applications.
var DBAImg = "phpmyadmin/phpmyadmin"
Expand Down

0 comments on commit 447c2b7

Please sign in to comment.