PR review fixes

This commit is contained in:
alexeykorening 2019-03-19 16:47:43 +01:00 committed by Mike Hearn
parent 4f812bbd90
commit 57d0040b7b

View File

@ -5,7 +5,7 @@
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
<changeSet author="R3.Corda" id="1511451595465-1.1" dbms="h2">
<preConditions onFail="MARK_RAN">
<preConditions onFail="MARK_RAN" onSqlOutput="TEST">
<not><sequenceExists sequenceName="hibernate_sequence"/></not>
</preConditions>
<createSequence sequenceName="hibernate_sequence"/>
@ -13,8 +13,8 @@
<changeSet author="R3.Corda" id="1511451595465-1.3" onValidationFail="MARK_RAN">
<preConditions onFail="MARK_RAN" onSqlOutput="TEST">
<not><sequenceExists sequenceName="hibernate_sequence"/></not>
<not><dbms type="h2"/></not>
<not><sequenceExists sequenceName="hibernate_sequence"/></not>
</preConditions>
<createSequence sequenceName="hibernate_sequence" minValue="1"/>
</changeSet>