blob: 8e6e7892ef6fe0e82f2d88f7ab337c9862dfac13 [file] [log] [blame]
package grails.gorm.tck
import grails.persistence.Entity
@Entity
class Country extends Location {
Integer population = 0
static hasMany = [residents:Person]
Set residents
}