Hi,
I am using liquibase (2.0) the following way:
- liquibase = new Liquibase(...);
- liquibase.forceReleaseLocks();
- liquibase.update(null);
It seems always the first property is taken and the rest are ignored no matter what database I use.
For mssql this will work, for oracle this wont use and i get an error that varbinary is not supported.
If i comment out the first line then oracle works also…
Any help greatly apprtiated