Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #992: Review liquibase scripts #993

Merged
merged 8 commits into from
Sep 4, 2023
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_application_seq</comment>
<createSequence sequenceName="pa_application_seq" cacheSize="20" />
<createSequence sequenceName="pa_application_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="2" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand All @@ -20,7 +20,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_application_version_seq</comment>
<createSequence sequenceName="pa_application_version_seq" cacheSize="20" />
<createSequence sequenceName="pa_application_version_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="3" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand All @@ -30,7 +30,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_master_keypair_seq</comment>
<createSequence sequenceName="pa_master_keypair_seq" cacheSize="20" />
<createSequence sequenceName="pa_master_keypair_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="4" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand All @@ -40,7 +40,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_signature_audit_seq</comment>
<createSequence sequenceName="pa_signature_audit_seq" cacheSize="20" />
<createSequence sequenceName="pa_signature_audit_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="5" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand All @@ -50,7 +50,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_activation_history_seq</comment>
<createSequence sequenceName="pa_activation_history_seq" cacheSize="20" />
<createSequence sequenceName="pa_activation_history_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="6" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand All @@ -60,7 +60,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_recovery_code_seq</comment>
<createSequence sequenceName="pa_recovery_code_seq" cacheSize="20" />
<createSequence sequenceName="pa_recovery_code_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="7" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand All @@ -70,7 +70,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_recovery_puk_seq</comment>
<createSequence sequenceName="pa_recovery_puk_seq" cacheSize="20" />
<createSequence sequenceName="pa_recovery_puk_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="8" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand All @@ -80,7 +80,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_recovery_config_seq</comment>
<createSequence sequenceName="pa_recovery_config_seq" cacheSize="20" />
<createSequence sequenceName="pa_recovery_config_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="9" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand All @@ -90,7 +90,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_operation_template_seq</comment>
<createSequence sequenceName="pa_operation_template_seq" cacheSize="20" />
<createSequence sequenceName="pa_operation_template_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

<changeSet id="10" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky">
Expand Down