-
Notifications
You must be signed in to change notification settings - Fork 11
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
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
bf55cd4
Fix #992: Review liquibase scripts
jandusil 224d178
Fix #992: Review liquibase scripts
jandusil d7c469e
Fix #992: Review liquibase scripts
jandusil f02543a
Fix #992: Review liquibase scripts
jandusil 3cc73dc
Revert "Fix #992: Review liquibase scripts"
jandusil 66eb534
Revert "Fix #992: Review liquibase scripts"
jandusil 2ac52a7
Remove type and datatype from sequence.
zcgandcomp 10fe891
Remove type and datatype from sequence.
zcgandcomp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="2" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
@@ -20,7 +20,8 @@ | |
</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" | ||
type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="3" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
@@ -30,7 +31,8 @@ | |
</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" | ||
type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="4" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
@@ -40,7 +42,8 @@ | |
</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" | ||
type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="5" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
@@ -50,7 +53,8 @@ | |
</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" | ||
type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="6" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
@@ -60,7 +64,8 @@ | |
</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" | ||
type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="7" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
@@ -70,7 +75,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" type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="8" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
@@ -80,7 +85,8 @@ | |
</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" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Different type then id in the table |
||
type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="9" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
@@ -90,7 +96,8 @@ | |
</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" | ||
type="bigint"/> | ||
</changeSet> | ||
|
||
<changeSet id="10" logicalFilePath="powerauth-java-server/1.4.x/20230322-init-db.xml" author="Lubos Racansky"> | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Different type then id in the table