Sign in
apache
/
grails-data-mapping
/
ecc608831967aee5f035b1bba28dee848aaa93e7
/
.
/
grails-data-hibernate5
/
examples
/
grails-database-per-tenant
/
grails-app
/
domain
/
example
/
Book.groovy
blob: 8db5b543769e224171ea2bd9b935924618f6b5c3 [
file
] [
log
] [
blame
]
package
example
import
grails
.
gorm
.
MultiTenant
import
org
.
grails
.
datastore
.
gorm
.
GormEntity
class
Book
implements
GormEntity
<
Book
>,
MultiTenant
<
Book
>
{
String
title
static
constraints
=
{
title blank
:
false
}
}