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重启