gorm设置外键约束

发布于 2022-09-11 16:09:28 字数 1384 浏览 35 评论 0

两张表,一张是category,一张product,定义如下:

type Product struct {
    ProductId  uint32 `gorm:"primary_key;type:int(11) unsigned auto_increment;"`
    Category Category `gorm:"ForeignKey:CateIDRef;"`  //这里设置外键关联到category上去
    CateIDRef uint16 `gorm:"type:mediumint(11) unsigned not null;"`
    //CateTitle string `gorm:"type:varchar(30);not null;"`
    //Title string `gorm:"type:varchar(30)  not null;"`
    Summary string `gorm:"type:varchar(255)  not null;"`
    Num  uint32  `gorm:"type:int unsigned  not null; default:0;"`
    Price float64 `gorm:"type:decimal(10,2) unsigned not null;"`
    Pics string        `gorm:"type:varchar(500); default: '';"`
    CreateTime time.Time `gorm:"type:timestamp not null;default:current_timestamp;"`
    ModifyTime time.Time `gorm:"type:timestamp on update current_timestamp;omitempty;default:current_timestamp;"`
}

type Category struct {
    CateID uint16  `gorm:"primary_key;type:mediumint(11) not null unsigned auto_increment;"`
    ParentID uint16  `gorm:"type:mediumint(11) unsigned;not null;"`
    Title string `gorm:"type:varchar(30);not null;unique"`
    CreateTime time.Time `gorm:"type:timestamp;not null;default:current_timestamp;"`
    ModifyTime time.Time `gorm:"type:timestamp;not null on update current_timestamp;default:current_timestamp;"`
    Level uint16 `gorm:"-"`
}

但是外键创建不成功,不知道具体原因在哪儿,求解答。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

db.Model(&Product{}).AddForeignKey(参数)

另外这两张表不用设置主外键关联吧

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文