Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ func Open(dialect string, args ...interface{}) (db *DB, err error) {
}

db = &DB{
db: dbSQL,
logger: defaultLogger,
db: dbSQL,
logger: defaultLogger,

// Create a clone of the default logger to avoid mutating a shared object when
// multiple gorm connections are created simultaneously.
callbacks: DefaultCallback.clone(defaultLogger),
Expand Down Expand Up @@ -745,7 +745,7 @@ func (s *DB) RemoveForeignKey(field string, dest string) *DB {
return scope.db
}

// Association start `Association Mode` to handler relations things easir in that mode, refer: https://jinzhu.github.io/gorm/associations.html#association-mode
// Association start `Association Mode` to handler relations things easier in that mode, refer: https://jinzhu.github.io/gorm/associations.html#association-mode
func (s *DB) Association(column string) *Association {
var err error
var scope = s.Set("gorm:association:source", s.Value).NewScope(s.Value)
Expand Down