I am using liquibase 2.x (can't upgrade just yet) and want to generate my migrations.xml from a SQL file. There is the sql tag that lets me target the dbs but that seems like its only 3.x.
I am currently using h2 and liquibase.diff.Diff to do this, but it has issues generating the changeSet (VARCHAR(2147483647) freaks out in derby). It also feels wrong to me by loading the SQL into h2 then Diffing to create a changeSet for PoststgreSQL. Is there a way to let me generate my migrations.xml file without diffing?
I am also fine generating different changeSets for different DBs as long as its in the same migration.xml
is there any way to do this?