Liquibase创建索引 发表于 2019-04-30 更新于 2023-03-01 分类于 Liquibase 本文字数: 201 阅读时长 ≈ 1 分钟 创建索引liquibase preconditions 创建索引前先判断索引是否存在 12345678910<changeSet id="228-039" author="jlin"> <preConditions onFail="MARK_RAN"> <not> <indexExists tableName="t_health_abnormal" indexName="idx_create_time" columnNames="create_time"/> </not> </preConditions> <createIndex tableName="t_health_abnormal" indexName="idx_create_time"> <column name="create_time" /> </createIndex> </changeSet> 阅读全文 »