Merge pull request #2815 from annando/1609-mysql

We should only use utf8mb4 for dumpsql and new installations
pull/2819/head
Tobias Diekershoff 2016-09-29 09:26:17 +02:00 zatwierdzone przez GitHub
commit 92dac133a0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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";