mirror of https://github.com/go-gorm/gorm.git
Merge pull request #338 from likestripes/is_ignored_fix
check isIgnored when compiling attrs to update
This commit is contained in:
commit
e3327d0800
|
@ -65,7 +65,7 @@ func convertInterfaceToMap(values interface{}) map[string]interface{} {
|
|||
default:
|
||||
scope := Scope{Value: values}
|
||||
for _, field := range scope.Fields() {
|
||||
if !field.IsBlank {
|
||||
if !field.IsBlank && !field.IsIgnored {
|
||||
attrs[field.DBName] = field.Field.Interface()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue