blob: 390ade51d842d448a8cfbd64c5bc2164e38f8088 [file] [log] [blame]
package ds2
import org.grails.datastore.gorm.GormEntity
class Book implements GormEntity<Book> {
String title
static constraints = {
}
static mapping = {
datasource 'secondary'
}
}