-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* MOSIP-35798 Signed-off-by: dhanendra06 <dhanendra.tech@gmail.com> * updated the pr based on review comments Signed-off-by: dhanendra06 <dhanendra.tech@gmail.com> --------- Signed-off-by: dhanendra06 <dhanendra.tech@gmail.com>
- Loading branch information
1 parent
c495c94
commit 96a3478
Showing
3 changed files
with
12 additions
and
2 deletions.
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
4 changes: 3 additions & 1 deletion
4
db_upgrade_scripts/mosip_kernel/sql/1.2.0.1_to_1.3.0_rollback.sql
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
\echo 'Upgrade Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION' | ||
--#INDEX-- | ||
DROP INDEX IF EXISTS idx_uin_status ON kernel.uin; | ||
DROP INDEX IF EXISTS idx_uin_uin ON kernel.uin; |
4 changes: 3 additions & 1 deletion
4
db_upgrade_scripts/mosip_kernel/sql/1.2.0.1_to_1.3.0_upgrade.sql
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
\echo 'Upgrade Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION' | ||
--#INDEX-- | ||
CREATE INDEX IF NOT EXISTS idx_uin_status ON kernel.uin using btree(uin_status) where uin_status='UNUSED'; | ||
CREATE INDEX IF NOT EXISTS idx_uin_uin ON kernel.uin using btree(uin); |