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 #670: Review liquibase scripts #671

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</not>
</preConditions>
<comment>Create a new sequence push_credentials_seq</comment>
<createSequence sequenceName="push_credentials_seq"/>
<createSequence sequenceName="push_credentials_seq" startValue="1" incrementBy="1" cacheSize="20"/>
</changeSet>

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

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

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

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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zcgandcomp So do we have to specify the incrementBy? Is it also platform-specific?

</changeSet>

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

<changeSet id="7" logicalFilePath="powerauth-push-server/1.4.x/20230321-init-db.xml" author="Lubos Racansky">
Expand Down