Skip to content

Commit

Permalink
fix: override methods to fix core issue 5786
Browse files Browse the repository at this point in the history
  • Loading branch information
filipelautert committed Jun 5, 2024
1 parent 91fad60 commit 7afbde8
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ protected String getQuotingEndReplacement() {
return "``";
}

@Override
public String getDatabaseChangeLogTableName() {
return super.getDatabaseChangeLogTableName().toLowerCase(Locale.US);
}

@Override
public String getDatabaseChangeLogLockTableName() {
return super.getDatabaseChangeLogLockTableName().toLowerCase(Locale.US);
}

@Override
public String getShortName() {
return PRODUCT_NAME;
Expand Down

0 comments on commit 7afbde8

Please sign in to comment.