Skip to content

Commit

Permalink
Updated batchjob db scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Aiham <[email protected]>
  • Loading branch information
aihamh committed May 21, 2024
1 parent bf0674e commit 600a2ec
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion db_scripts/mosip_prereg/ddl/batch_job_execution.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ CREATE TABLE prereg.batch_job_execution
EXIT_MESSAGE VARCHAR(2500) ,
LAST_UPDATED TIMESTAMP,
constraint JOB_INST_EXEC_FK foreign key (JOB_INSTANCE_ID)
references prereg.batch_job_instance(JOB_INSTANCE_ID)
)
WITH (
OIDS = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ CREATE TABLE prereg.batch_job_execution_context
SHORT_CONTEXT VARCHAR(2500) NOT NULL,
SERIALIZED_CONTEXT TEXT ,
constraint JOB_EXEC_CTX_FK foreign key (JOB_EXECUTION_ID)
references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID)
)
WITH (
OIDS = FALSE
Expand Down
1 change: 0 additions & 1 deletion db_scripts/mosip_prereg/ddl/batch_job_execution_param.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ CREATE TABLE prereg.batch_job_execution_params
PARAMETER_VALUE VARCHAR(2500) ,
IDENTIFYING CHAR(1) NOT NULL ,
constraint JOB_EXEC_PARAMS_FK foreign key (JOB_EXECUTION_ID)
references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID)
)
WITH (
OIDS = FALSE
Expand Down
1 change: 0 additions & 1 deletion db_scripts/mosip_prereg/ddl/batch_step_execution.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ CREATE TABLE prereg.batch_step_execution
EXIT_MESSAGE VARCHAR(2500) ,
LAST_UPDATED TIMESTAMP,
constraint JOB_EXEC_STEP_FK foreign key (JOB_EXECUTION_ID)
references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID)
)
WITH (
OIDS = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ CREATE TABLE prereg.batch_step_execution_context
SHORT_CONTEXT VARCHAR(2500) NOT NULL,
SERIALIZED_CONTEXT TEXT ,
constraint STEP_EXEC_CTX_FK foreign key (STEP_EXECUTION_ID)
references BATCH_STEP_EXECUTION(STEP_EXECUTION_ID)
)
WITH (
OIDS = FALSE
Expand Down

0 comments on commit 600a2ec

Please sign in to comment.