You can override MySQLDialect#columnType and do a if (sqlTypeCode == java.sql.Types.BOOLEAN ) { return "tinyint(1)"; }, but I would recommend you to just try the out of the box dialect instead of fiddling around with it.
1 Like