-
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
Conversation
- Review sequences
- Review foreign keys
- Review indexes
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.
Please keep current name of indexes
- Revert index name changes in audit_log
@@ -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"/> |
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
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
Different type then id in the table
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.
In a nutshell only new attributes for sequence are added. Otherwise it is kept as in the original SQL files.
LB is runnable on all supported DB platforms.
No description provided.