Skip to content

Commit c146f80

Browse files
James Woodrufffmbenhassine
James Woodruff
authored andcommitted
Fix BATCH_STEP_EXECUTION DDL in schema appendix
Issue #4356
1 parent 972951a commit c146f80

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: spring-batch-docs/src/main/asciidoc/schema-appendix.adoc

+3-2
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,12 @@ listing shows the definition of the `BATCH_STEP_EXECUTION` table:
224224
[source, sql]
225225
----
226226
CREATE TABLE BATCH_STEP_EXECUTION (
227-
STEP_EXECUTION_ID BIGINT PRIMARY KEY ,
227+
STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY ,
228228
VERSION BIGINT NOT NULL,
229229
STEP_NAME VARCHAR(100) NOT NULL,
230230
JOB_EXECUTION_ID BIGINT NOT NULL,
231-
START_TIME TIMESTAMP NOT NULL ,
231+
CREATE_TIME TIMESTAMP NOT NULL,
232+
START_TIME TIMESTAMP DEFAULT NULL ,
232233
END_TIME TIMESTAMP DEFAULT NULL,
233234
STATUS VARCHAR(10),
234235
COMMIT_COUNT BIGINT ,

0 commit comments

Comments
 (0)