databaseChangeLog -> property ignores dbms attribute

Hi,

I am using liquibase (2.0) the following way:

  1. liquibase = new Liquibase(...);
  2. liquibase.forceReleaseLocks();
  3. liquibase.update(null);
When i put this in my databaseChangeLog 

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