Skip to content

Commit

Permalink
feat: remove the underscore from the getFullTableName method
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxi2015 committed Jul 18, 2024
1 parent 9ad4075 commit 908d5f5
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 @@ -391,7 +391,7 @@ func (a *Adapter) getTableInstance() *CasbinRule {

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 908d5f5

Please sign in to comment.