Skip to content

Commit

Permalink
[MOSIP-27028] Update 1.1.5.5_to_1.2.0.1-B1_upgrade.sql
Browse files Browse the repository at this point in the history
Signed-off-by: Keshav Mishra <[email protected]>
  • Loading branch information
ckm007 authored Jul 17, 2023
1 parent fa1f7f0 commit 098f709
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ REVOKE ALL PRIVILEGES ON ALL TABLES IN SCHEMA kernel FROM sysadmin;

GRANT SELECT, INSERT, TRUNCATE, REFERENCES, UPDATE, DELETE ON ALL TABLES IN SCHEMA kernel TO kerneluser;

GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA kernel TO postgres;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA kernel TO postgres;


CREATE INDEX IF NOT EXISTS idx_prid_status
ON kernel.prid USING btree
(prid_status COLLATE pg_catalog."default" ASC NULLS LAST)
TABLESPACE pg_default;

0 comments on commit 098f709

Please sign in to comment.