Skip to content

Commit

Permalink
fix: remove underscore (#48)
Browse files Browse the repository at this point in the history
Signed-off-by: abingcbc <[email protected]>
  • Loading branch information
Abingcbc authored Jan 20, 2022
1 parent a77f892 commit eadfe04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ func NewAdapterByEngineWithTableName(engine *xorm.Engine, tableName string, tabl

func (a *Adapter) getFullTableName() string {
if a.tablePrefix != "" {
return a.tablePrefix + "_" + a.tableName
return a.tablePrefix + a.tableName
}
return a.tableName
}
Expand Down

0 comments on commit eadfe04

Please sign in to comment.