Maybe a silly question but where/how should I define default values for GORM domain class properties? For example when I\'m creating a new Company object instance I want default
Put it in the domain class itself
class Company { String country = "USA" }