联合唯一键
()
| 31 | |
| 32 | // 联合唯一键 |
| 33 | func (u *Relationship) TableUnique() [][]string { |
| 34 | return [][]string{ |
| 35 | []string{"MemberId", "BookId"}, |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | func NewRelationship() *Relationship { |
| 40 | return &Relationship{} |
nothing calls this directly
no outgoing calls
no test coverage detected