not needed anymore as we now strip utf8 4-byte characters

This commit is contained in:
Athou
2013-04-21 18:59:38 +02:00
parent 1e94cc434c
commit c3a271fcd0

View File

@@ -5,6 +5,6 @@ import org.hibernate.dialect.MySQL5InnoDBDialect;
public class MySQL5Dialect extends MySQL5InnoDBDialect {
public String getTableTypeString() {
return " ENGINE=InnoDB DEFAULT CHARSET=utf8mb4";
return " ENGINE=InnoDB DEFAULT CHARSET=utf8";
}
}