Remove unnecessary ToSnake

This commit is contained in:
Jinzhu 2014-11-12 10:23:51 +08:00
parent b32c5badd2
commit b1c2a22646
1 changed files with 1 additions and 1 deletions

View File

@ -475,7 +475,7 @@ func (scope *Scope) related(value interface{}, foreignKeys ...string) *Scope {
// has one // has one
if foreignValue, err := scope.FieldValueByName(foreignKey); err == nil { if foreignValue, err := scope.FieldValueByName(foreignKey); err == nil {
sql := fmt.Sprintf("%v = ?", scope.Quote(ToSnake(toScope.PrimaryKey()))) sql := fmt.Sprintf("%v = ?", scope.Quote(toScope.PrimaryKey()))
toScope.inlineCondition(sql, foreignValue).callCallbacks(scope.db.parent.callback.queries) toScope.inlineCondition(sql, foreignValue).callCallbacks(scope.db.parent.callback.queries)
return scope return scope
} }