nullableはlatとlngでは機能しません。助けてください。
class Location {
int id
String country
String province
String city
double lat
double lng
static mapping = {
table: 'Locaations'
country length:100
province length: 100
city length: 100
}
static constraints = {
province(blank:true, nullable:true)
city(blank:true, nullable:true)
lat(blank: true, nullable:true)
lng (blank:true, nullable:true)
}
}