Is it possible to set the database column type of a hasMany association to a primitive type (in my case string) to a specific value? I know how to set a field (see this question), but this is different.
List textRecords
static hasMany = [
textRecords:String,
]
I want to make sure that my textRecords are mapped to a TEXT or LONGTEXT database type.
I could create a separate domain class that contains just one string field and map that field, but that seems like a kluge.