I am building a Spring 3 MVC app that uses a MySQL database and have recently integrated Flyway into the solution to manage the database migrations. I have successfully conf
From http://www.h2database.com/javadoc/org/h2/engine/DbSettings.html:
databaseToUpper: Database setting DATABASE_TO_UPPER (default: true).
Database short names are converted to uppercase for the DATABASE() function ... Setting this to "false" is experimental. When set to false, all identifier names (table names, column names) are case sensitive...
the problem is that by default schema names are in UPPERCASE.
add ;DATABASE_TO_UPPER=false to database url