Skip to content

Commit

Permalink
MOSIP-39412 Added upgrade script in ddl (#1416)
Browse files Browse the repository at this point in the history
Signed-off-by: kameshsr <[email protected]>
  • Loading branch information
kameshsr authored Feb 3, 2025
1 parent 269e157 commit 8a19908
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion db_scripts/mosip_ida/ddl/ida-batch_job_instance.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@ CREATE TABLE ida.batch_job_instance (
)
WITH (
OIDS = FALSE
);
);

-- Indexes
CREATE INDEX IF NOT EXISTS idx_job_name ON ida.batch_job_instance(JOB_NAME);
CREATE INDEX IF NOT EXISTS idx_job_key ON ida.batch_job_instance(JOB_KEY);

0 comments on commit 8a19908

Please sign in to comment.