Hello,
I have a create table change set
I export the whole database from production environment, and import it in Q&A environment, but the tablespace parameter value is not the same on both environnements. I get
In my case checksum should be computed without taking into account parameter values . It it possible to do that?
Liquibase 3.4.2 on Oracle
Gérald
I have a create table change set
- <changeSet id="1" author="bob">
- <createTable tableName="department" tablespace="${department.tablespace}">
- <column name="id" type="int">
- <constraints primaryKey="true" nullable="false"/>
- </column>
- <column name="name" type="varchar(50)">
- <constraints nullable="false"/>
- </column>
- <column name="active" type="boolean" defaultValueBoolean="true"/>
- </createTable>
- </changeSet>
I export the whole database from production environment, and import it in Q&A environment, but the tablespace parameter value is not the same on both environnements. I get
- liquibase.exception.ValidationFailedException: Validation Failed:
- 1 change sets check sum
- liquibase/VariableChangeLog.xml::1::bob is now: 7:0760f4ad19ac49b86d211b7c07aacec3
In my case checksum should be computed without taking into account parameter values . It it possible to do that?
Liquibase 3.4.2 on Oracle
Gérald