mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 16:15:06 +00:00
HHH-6935 Use bit type for MySQLDialect's boolean
This commit is contained in:
parent
58622f3e10
commit
052886afeb
@ -61,6 +61,7 @@ public MySQLDialect() {
|
||||
registerColumnType( Types.CHAR, "char(1)" );
|
||||
registerColumnType( Types.FLOAT, "float" );
|
||||
registerColumnType( Types.DOUBLE, "double precision" );
|
||||
registerColumnType( Types.BOOLEAN, "bit" ); // HHH-6935
|
||||
registerColumnType( Types.DATE, "date" );
|
||||
registerColumnType( Types.TIME, "time" );
|
||||
registerColumnType( Types.TIMESTAMP, "datetime" );
|
||||
|
Loading…
x
Reference in New Issue
Block a user