Merge pull request #2815 from annando/1609-mysql

We should only use utf8mb4 for dumpsql and new installations
This commit is contained in:
Tobias Diekershoff 2016-09-29 09:26:17 +02:00 committed by GitHub
commit 92dac133a0
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ function db_create_table($name, $fields, $verbose, $action, $indexes=null) {
if (isset($a->config["system"]["db_charset"]))
$charset = $a->config["system"]["db_charset"];
elseif ($verbose)
elseif (!$action) // Used for dumpsql
$charset = "utf8mb4";
else
$charset = "utf8";