H2 “runscript” command turns all table names into uppercase
I have a sql script (it is just schema definition). The script is a modified version (getting rid of the bad characters h2 doesn't like) of a mysql dumb. The script runs and the schema is inserted into the h2 database, but the issue is that all of the database names are in uppercase ('xyz' gets converted to 'XYZ'). I need them to stay in lowercase because my application is looking for the lowercase (and all of the tables in the mysql db are lowercase). Why is this happening? How can I tell h2 to not do that? Is there a better way to insert schema definition into h2? This is the INT command I'm