correct database encoding to utf8mb4 and collation to utf8mb4_unicode_ci

This commit is contained in:
oliver 2015-05-19 11:56:29 +02:00
parent 324bc2fc19
commit 85dc2f87ec
2 changed files with 210 additions and 210 deletions

File diff suppressed because it is too large Load diff

View file

@ -156,7 +156,7 @@
}
// Set character encoding
if(!$con->set_charset('utf8')) {
if(!$con->set_charset('utf8mb4')) {
throw new \nre\exceptions\DatamodelException($con->connect_error, $con->connect_errno);
}