Skip to content

Commit

Permalink
[Java21]
Browse files Browse the repository at this point in the history
Signed-off-by: JanardhanBS-SyncByte <[email protected]>
  • Loading branch information
JanardhanBS-SyncByte committed Jun 11, 2024
1 parent 592a69e commit 46ddff1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 15 deletions.
4 changes: 1 addition & 3 deletions db_scripts/mosip_prereg/ddl/batch_job_execution.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ CREATE TABLE prereg.batch_job_execution
STATUS VARCHAR(10) ,
EXIT_CODE VARCHAR(2500) ,
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)
LAST_UPDATED TIMESTAMP
)
WITH (
OIDS = FALSE
Expand Down
4 changes: 1 addition & 3 deletions db_scripts/mosip_prereg/ddl/batch_job_execution_context.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ CREATE TABLE prereg.batch_job_execution_context
(
JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY,
SHORT_CONTEXT VARCHAR(2500) NOT NULL,
SERIALIZED_CONTEXT TEXT ,
constraint JOB_EXEC_CTX_FK foreign key (JOB_EXECUTION_ID)
references prereg.BATCH_JOB_EXECUTION(JOB_EXECUTION_ID)
SERIALIZED_CONTEXT TEXT
)
WITH (
OIDS = FALSE
Expand Down
4 changes: 1 addition & 3 deletions db_scripts/mosip_prereg/ddl/batch_job_execution_param.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ CREATE TABLE prereg.batch_job_execution_params
PARAMETER_NAME VARCHAR(100) NOT NULL ,
PARAMETER_TYPE VARCHAR(100) NOT NULL ,
PARAMETER_VALUE VARCHAR(2500) ,
IDENTIFYING CHAR(1) NOT NULL ,
constraint JOB_EXEC_PARAMS_FK foreign key (JOB_EXECUTION_ID)
references prereg.BATCH_JOB_EXECUTION(JOB_EXECUTION_ID)
IDENTIFYING CHAR(1) NOT NULL
)
WITH (
OIDS = FALSE
Expand Down
4 changes: 1 addition & 3 deletions db_scripts/mosip_prereg/ddl/batch_step_execution.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ CREATE TABLE prereg.batch_step_execution
ROLLBACK_COUNT BIGINT ,
EXIT_CODE VARCHAR(2500) ,
EXIT_MESSAGE VARCHAR(2500) ,
LAST_UPDATED TIMESTAMP,
constraint JOB_EXEC_STEP_FK foreign key (JOB_EXECUTION_ID)
references prereg.BATCH_JOB_EXECUTION(JOB_EXECUTION_ID)
LAST_UPDATED TIMESTAMP
)
WITH (
OIDS = FALSE
Expand Down
4 changes: 1 addition & 3 deletions db_scripts/mosip_prereg/ddl/batch_step_execution_context.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ CREATE TABLE prereg.batch_step_execution_context
(
STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY,
SHORT_CONTEXT VARCHAR(2500) NOT NULL,
SERIALIZED_CONTEXT TEXT ,
constraint STEP_EXEC_CTX_FK foreign key (STEP_EXECUTION_ID)
references prereg.BATCH_STEP_EXECUTION(STEP_EXECUTION_ID)
SERIALIZED_CONTEXT TEXT
)
WITH (
OIDS = FALSE
Expand Down

0 comments on commit 46ddff1

Please sign in to comment.