Skip to content

Commit eadfe04

Browse files
authored
fix: remove underscore (#48)
Signed-off-by: abingcbc <abingcbc626@gmail.com>
1 parent a77f892 commit eadfe04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adapter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func NewAdapterByEngineWithTableName(engine *xorm.Engine, tableName string, tabl
173173

174174
func (a *Adapter) getFullTableName() string {
175175
if a.tablePrefix != "" {
176-
return a.tablePrefix + "_" + a.tableName
176+
return a.tablePrefix + a.tableName
177177
}
178178
return a.tableName
179179
}

0 commit comments

Comments
 (0)