check isIgnored when compiling attrs to update

This commit is contained in:
Travis Donia 2015-01-13 17:57:47 -05:00 committed by Jinzhu
parent 2166649409
commit 73c47b90fe
1 changed files with 1 additions and 1 deletions

View File

@ -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()
}
}