Hello,
I use Liquibase from Grails. Recently, I migrated from 1.8.4 to 2.0.3 and I have some issues with the existing migrations.
Most of my changesets have runOnChange=true. I read the migration note and was careful that no changeset are modified until the migration is over.
The problem is that Liquibase tries to run changesets that already ran previously, and if fails because the work contained in those changesets was already done (for instance, the table is already created, so trying to create it again will fail).
Those changesets run on various databases (HSQLDB, MS SQL, MySQL).
Do you have any idea what could cause the changeset to be run? I want the existing changests not to run at all.
Thanks.
Antoine