in my domain object I have a map:
Map<String, String> stuff
GORM automatically creates a table where the key and value are varchar (255) .
I need a LongText value . How should I do it?
Also, is there a workaround for this that doesn't include using the hibernate configuration?
source
share