postgresql update duplicate key value violates unique constraint


问题

使用SQL update 语句,出现 duplicate key value violates unique constraint 错误

解决方法

//把
ModuleID           string            `json:"module_id" binding:"required" gorm:"unique"`
//改成
ModuleID           string            `json:"module_id" binding:"required" gorm:"uniqueIndex"``

automigrate 无法生效,需要删除数据库volume重启

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282409.html

(0)
上一篇 2022年8月27日
下一篇 2022年8月27日

相关推荐

发表回复

登录后才能评论