We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
218 if err := db.Model(o).Updates(u).Error; err != nil { 219 if err == gorm.ErrRecordNotFound { 220 return err 221 } 222 223 return fmt.Errorf("can't update Entry %v fields %v: %s", 224 o, fields, err) 225 }
gorm will never return this error from Update()
Update()
The text was updated successfully, but these errors were encountered:
#21: generate DBSchemaField as exported type
557d742
Merge pull request #30 from jirfag/exported-db-schema-field
e76f651
No branches or pull requests
gorm will never return this error from
Update()
The text was updated successfully, but these errors were encountered: