mirror of https://github.com/go-gorm/gorm.git
Update main.go
This commit is contained in:
parent
d926a05bec
commit
2ee239a4c0
2
main.go
2
main.go
|
@ -433,7 +433,7 @@ func (s *DB) FirstOrCreate(out interface{}, where ...interface{}) *DB {
|
|||
return c
|
||||
}
|
||||
|
||||
// Update update attributes with callbacks. refer: https://jinzhu.github.io/gorm/crud.html#update
|
||||
// Update update attributes with callbacks, refer: https://jinzhu.github.io/gorm/crud.html#update
|
||||
// WARNING when update with struct, GORM will not update fields that with zero value
|
||||
func (s *DB) Update(attrs ...interface{}) *DB {
|
||||
return s.Updates(toSearchableMap(attrs...), true)
|
||||
|
|
Loading…
Reference in New Issue