0
我在我的模型:GORM tablePerHierarchy假,外鍵
class ContestParticipant{
static mapping = {
id generator: "uuid"
tablePerHierarchy false
}
String id
Contest sweepContest
Client client
String email
}
class Winner extends ContestParticipant{
...
}
我的問題是,爲什麼在表中的贏家是不創造一個FK其父表?
感謝
即時消息沒有看到Foo與其他任何類別的關係 – hvgotcodes 2011-05-25 18:28:59
我編輯了我的帖子,現在我們有ContestParticipant中的所有對象!!但這裏的問題是爲什麼表贏家有FK給ContestParticipant!?! – 2011-05-25 18:34:51