Skip to content

Commit

Permalink
Remove type and datatype from sequence.
Browse files Browse the repository at this point in the history
  • Loading branch information
zcgandcomp committed Sep 4, 2023
1 parent 66eb534 commit 2ac52a7
Showing 1 changed file with 7 additions and 12 deletions.
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" startValue="1" incrementBy="1" cacheSize="20" type="bigint"/>
<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,8 +20,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_application_version_seq</comment>
<createSequence sequenceName="pa_application_version_seq" startValue="1" incrementBy="1" cacheSize="20"
type="bigint"/>
<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 @@ -31,8 +30,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_master_keypair_seq</comment>
<createSequence sequenceName="pa_master_keypair_seq" startValue="1" incrementBy="1" cacheSize="20"
type="bigint"/>
<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 @@ -42,8 +40,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_signature_audit_seq</comment>
<createSequence sequenceName="pa_signature_audit_seq" startValue="1" incrementBy="1" cacheSize="20"
type="bigint"/>
<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 @@ -64,8 +61,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_recovery_code_seq</comment>
<createSequence sequenceName="pa_recovery_code_seq" startValue="1" incrementBy="1" cacheSize="20"
type="bigint"/>
<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 @@ -75,7 +71,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_recovery_puk_seq</comment>
<createSequence sequenceName="pa_recovery_puk_seq" startValue="1" incrementBy="1" cacheSize="20" type="bigint"/>
<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 @@ -96,8 +92,7 @@
</not>
</preConditions>
<comment>Create a new sequence pa_operation_template_seq</comment>
<createSequence sequenceName="pa_operation_template_seq" startValue="1" incrementBy="1" cacheSize="20"
type="bigint"/>
<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

0 comments on commit 2ac52a7

Please sign in to comment.