Sign in
apache
/
grails-data-hibernate6
/
64ae7f83bdaab85defa8c9469969299c896a5304
/
.
/
examples
/
grails-schema-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
}
}