Fix inner join query mod

This commit is contained in:
Aaron L 2016-08-07 18:12:13 -07:00
parent 113754d38b
commit b3ba8462d9

View file

@ -50,7 +50,7 @@ func Offset(offset int) QueryMod {
// InnerJoin on another table
func InnerJoin(clause string, args ...interface{}) QueryMod {
return func(q *boil.Query) {
boil.AppendInnerJoin(q, boil.JoinInner, clause, args...)
boil.AppendInnerJoin(q, clause, args...)
}
}