我定义了以下域类:
class Content {
Map i18nDescription = [:]
...
}
如果运行以下代码
content.i18nDescription['it'] = "desc desc...."
content.save()
我收到以下错误:
util.JDBCExceptionReporter ERROR: value too long for type character varying(255)
(我使用 postgres 作为数据库)
如何i18nDescription['it']
使用增加数据库中字段的大小
static constraints = {}
谢谢