mirror of
https://gitee.com/gitea/gitea
synced 2025-12-16 04:56:37 +08:00
Replace deprecated Id method with ID (#2655)
This commit is contained in:
@@ -56,7 +56,7 @@ func addTimetracking(x *xorm.Engine) error {
|
||||
changes = true
|
||||
}
|
||||
if changes {
|
||||
if _, err := x.Id(unit.ID).Cols("config").Update(unit); err != nil {
|
||||
if _, err := x.ID(unit.ID).Cols("config").Update(unit); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user