如果设置了自定义属性,我找不到签入前提条件元素的方法。
到目前为止,我发现的关于这个问题的内容就在这里。正如票证注释所示,如果不修改 API,扩展 CustomPrecondition 将无济于事。还有别的办法吗?
文档描述了一个 changeLogPropertyDefined 前提条件。
以下示例对我来说效果很好:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<changeSet author="mark (generated)" id="mark-1">
<preConditions onFail="HALT">
<changeLogPropertyDefined property="testing" value="1"/>
</preConditions>
<createTable tableName="TEST001">
<column name="ID" type="VARCHAR(10)">
<constraints nullable="false"/>
</column>
<column name="X" type="VARCHAR(9)">
<constraints nullable="false"/>
</column>
<column name="Y" type="DECIMAL(7,2)"/>
<column name="Z" type="DECIMAL(7,2)"/>
</createTable>
</changeSet>
</databaseChangeLog>
我从Maven经营liquibase。可以从命令行设置测试属性,如下所示:
mvn -Dtesting=1 compile