blob: c5629380608028c38198a39bfbd588e27058f181 [file] [log] [blame]
package example
import grails.gorm.MultiTenant
// Issue: https://github.com/grails/gorm-hibernate5/issues/450
// Pr: https://github.com/grails/gorm-hibernate5/pull/451
class MultitenantBook implements MultiTenant<MultitenantBook>, Serializable {
String id
String tenantId
String title
static mapping = {
id composite: ['id', 'tenantId']
}
}