Skip to content

Commit

Permalink
Merge pull request #10 from Manishch22/tf-develop
Browse files Browse the repository at this point in the history
Updated db_scripts for template changes and hotlist column
  • Loading branch information
Manishch22 committed Jul 10, 2023
2 parents 3175c63 + 52a40a2 commit 44e9910
Show file tree
Hide file tree
Showing 4 changed files with 1,474 additions and 1,378 deletions.
3 changes: 3 additions & 0 deletions db_scripts/mosip_hotlist/ddl/hotlist-hotlist.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ CREATE TABLE hotlist.hotlist (
upd_dtimes timestamp,
is_deleted boolean,
del_dtimes timestamp,
description character varying(128),
CONSTRAINT "pk_idHashidType" PRIMARY KEY (id_hash,id_type)

);
Expand All @@ -42,5 +43,7 @@ COMMENT ON COLUMN hotlist.hotlist.start_timestamp IS E'startTimestamp: Timestamp
-- ddl-end --
COMMENT ON COLUMN hotlist.hotlist.expiry_timestamp IS E'expiryTimestamp: Timestamp when respective hotlisted ID will expire.';
-- ddl-end --
COMMENT ON COLUMN hotlist.hotlist.description IS E'description: Description is the reason for blocking and unblocking of id.';
-- ddl-end --


3 changes: 3 additions & 0 deletions db_scripts/mosip_hotlist/ddl/hotlist-hotlist_h.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ CREATE TABLE hotlist.hotlist_h (
upd_dtimes timestamp,
is_deleted boolean,
del_dtimes timestamp,
description character varying(128),
CONSTRAINT "pk_idHashidTypestarttimestamp" PRIMARY KEY (id_hash,id_type,start_timestamp)

);
Expand All @@ -40,5 +41,7 @@ COMMENT ON COLUMN hotlist.hotlist_h.status IS E'status: status to denote whether
-- ddl-end --
COMMENT ON COLUMN hotlist.hotlist_h.start_timestamp IS E'startTimestamp: Timestamp when respective ID is hotlisted.';
-- ddl-end --
COMMENT ON COLUMN hotlist.hotlist.description IS E'description: Description is the reason for blocking and unblocking of id.';
-- ddl-end --


Loading

0 comments on commit 44e9910

Please sign in to comment.