mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 17:30:56 +00:00
Merge pull request #3530 from GeorgeXc/develop
[orm] add ignore auto_now_add field when update
This commit is contained in:
commit
610f27d684
14
orm/db.go
14
orm/db.go
@ -621,6 +621,20 @@ func (d *dbBase) Update(q dbQuerier, mi *modelInfo, ind reflect.Value, tz *time.
|
|||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var find bool
|
||||||
|
var index int
|
||||||
|
for i, col := range setNames {
|
||||||
|
if mi.fields.GetByColumn(col).autoNowAdd {
|
||||||
|
index = i
|
||||||
|
find = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if find {
|
||||||
|
setNames = append(setNames[0:index], setNames[index+1:]...)
|
||||||
|
setValues = append(setValues[0:index], setValues[index+1:]...)
|
||||||
|
}
|
||||||
|
|
||||||
setValues = append(setValues, pkValue)
|
setValues = append(setValues, pkValue)
|
||||||
|
|
||||||
Q := d.ins.TableQuote()
|
Q := d.ins.TableQuote()
|
||||||
|
Loading…
Reference in New Issue
Block a user