提交 ec3ffa04 编写于 作者: T tijsrademakers

Added custom sql for Oracle index

上级 f6031d0d
......@@ -85,12 +85,21 @@
<preConditions onFail="MARK_RAN">
<not>
<dbms type="mssql"/>
<dbms type="oracle"/>
</not>
</preConditions>
<addUniqueConstraint constraintName="ACT_UNIQ_RU_BUS_KEY"
tableName="ACT_RU_EXECUTION"
columnNames="PROC_DEF_ID_, BUSINESS_KEY_"/>
</changeSet>
</changeSet>
<changeSet id="4.2 ACT_UNIQ_RU_BUS_KEY" author="trademakers" dbms="oracle">
<sql splitStatements="false">
create unique index ACT_UNIQ_RU_BUS_KEY on ACT_RU_EXECUTION
(case when BUSINESS_KEY_ is null then null else PROC_DEF_ID_ end,
case when BUSINESS_KEY_ is null then null else BUSINESS_KEY_ end);
</sql>
</changeSet>
<changeSet id="5 ACT_RU_JOB" author="mmueller">
<createTable tableName="ACT_RU_JOB">
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册