mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
10 lines
240 B
Java
10 lines
240 B
Java
package com.commafeed.backend;
|
|
|
|
import org.hibernate.dialect.MySQL5InnoDBDialect;
|
|
|
|
public class MySQL5Dialect extends MySQL5InnoDBDialect {
|
|
|
|
public String getTableTypeString() {
|
|
return " ENGINE=InnoDB DEFAULT CHARSET=utf8";
|
|
}
|
|
} |