mirror of https://github.com/go-gorm/gorm.git
Reverted to original `NewRecord' func as per @jinzhu's feedback.
This commit is contained in:
parent
526fff01b7
commit
17917d49d8
5
main.go
5
main.go
|
@ -365,10 +365,7 @@ func (s *DB) Rollback() *DB {
|
|||
}
|
||||
|
||||
func (s *DB) NewRecord(value interface{}) bool {
|
||||
scope := s.clone().NewScope(value)
|
||||
result := scope.PrimaryKeyZero()
|
||||
s.err(scope.db.Error)
|
||||
return result
|
||||
return s.clone().NewScope(value).PrimaryKeyZero()
|
||||
}
|
||||
|
||||
func (s *DB) RecordNotFound() bool {
|
||||
|
|
Loading…
Reference in New Issue