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重启
标签:postgresql,constraint,binding,update,module,violates,duplicate,unique,id 来源: https://www.cnblogs.com/mrlonely2018/p/16629424.html