Skip to content

Commit

Permalink
MySQL has case sensitive table names on some platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Nov 2, 2007
1 parent b7f5d65 commit b1429db
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -369,7 +369,7 @@ protected boolean prefixConfigDatabase(Database targetTables) {

boolean createTables = false;
for (Table table : tables) {
table.setName(tblPrefix.toUpperCase() + table.getName().toUpperCase());
table.setName(tblPrefix + table.getName().toLowerCase());
fixForeignKeys(table, tblPrefix, false);

if (getMetaDataFor(getDefaultSchema(), table.getName().toUpperCase(), false) == null) {
Expand Down

0 comments on commit b1429db

Please sign in to comment.