I am new to Liquibase, Sorry for the simple question.
I plan migrate mysql to psql in my project. The step i did use ant:
–>generate change log from mysql.
–>use change log to update psql
it’s seem to work well, but the problem is :as we know, psql is case insensitive, but when i update database, i found liquibase crate table name with original case. this take trouble for me. i need to psql keep all table name with lowercase.
So, anyone know how can i make liquibase create table with lowercase tablename when i update in psql?
Probably the best thing to do is to modify the changelog after you generate it from mysql and before you apply it to postgres. You should be able to write a script to lowercase table name attributes in the XML if you have a lot of tables.