For MySql map @DbJson to mysql JSON db type

This commit is contained in:
rob bygrave
2020-01-10 14:39:55 +13:00
parent fa3de7158e
commit f6e45a6999
3 changed files with 22 additions and 20 deletions
@@ -65,6 +65,8 @@ public class MySqlPlatform extends DatabasePlatform {
dbTypeMap.put(DbType.BLOB, new MySqlBlob());
dbTypeMap.put(DbType.BINARY, new DbPlatformType("binary", 255));
dbTypeMap.put(DbType.VARBINARY, new DbPlatformType("varbinary", 255));
dbTypeMap.put(DbType.JSON, new DbPlatformType("json", false));
dbTypeMap.put(DbType.JSONB, new DbPlatformType("json", false));
}
@Override