I took the old configuration:
grails.gorm.default.constraints = {
'*' (nullable: true, blank: true)
}
... and put it in the application.groovy
.
Luckily it worked as expected.
How would one define this in application.yml
? I tried:
grails:
gorm:
default:
constraints:
'*' (nullable: true, blank: true)
but this gives errors on start.