blob: 108981a88bca6186e66b3a006d6b33dff5894f33 [file] [log] [blame]
package functional.tests
import grails.mongodb.MongoEntity
class Book implements MongoEntity<Book> {
String title
static mapWith = "mongo"
static constraints = {
title blank:false
}
}