Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3fb0b8a

Browse files
committed
BATCH-2237: Added missing column to schema needed for JSR-352 based jobs
1 parent 24b357d commit 3fb0b8a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spring-batch-core/src/main/resources/org/springframework/batch/core/schema-sqlite.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ CREATE TABLE BATCH_JOB_EXECUTION (
1919
EXIT_CODE VARCHAR(100) ,
2020
EXIT_MESSAGE VARCHAR(2500) ,
2121
LAST_UPDATED TIMESTAMP,
22+
JOB_CONFIGURATION_LOCATION VARCHAR(2500),
2223
constraint JOB_INST_EXEC_FK foreign key (JOB_INSTANCE_ID)
2324
references BATCH_JOB_INSTANCE(JOB_INSTANCE_ID)
2425
) ;

0 commit comments

Comments
 (0)