type ABC struct {ID uint Abc int `gorm:"unidqueIndex;Bcd string}我想要 FieldAbc和Bcd一起变得独一无二{Abc: 1, Bcd: "hello"} {Abc: 1, Bcd: "hi"}应该是有效的但是{Abc: 1, Bcd: "hello"} {Abc: 1, Bcd: "hello"}应该是无效的
1 回答
12345678_0001
TA贡献1802条经验 获得超5个赞
为两个字段指定相同的索引名称。
type ABC struct { ID uint Abc int `gorm:"uniqueIndex:abc_bcd_uniq"` Bcd string `gorm:"uniqueIndex:abc_bcd_uniq"`}
请参阅GORM 文档中的复合索引。
- 1 回答
- 0 关注
- 84 浏览
添加回答
举报
0/150
提交
取消