We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 972951a commit c146f80Copy full SHA for c146f80
spring-batch-docs/src/main/asciidoc/schema-appendix.adoc
@@ -224,11 +224,12 @@ listing shows the definition of the `BATCH_STEP_EXECUTION` table:
224
[source, sql]
225
----
226
CREATE TABLE BATCH_STEP_EXECUTION (
227
- STEP_EXECUTION_ID BIGINT PRIMARY KEY ,
+ STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY ,
228
VERSION BIGINT NOT NULL,
229
STEP_NAME VARCHAR(100) NOT NULL,
230
JOB_EXECUTION_ID BIGINT NOT NULL,
231
- START_TIME TIMESTAMP NOT NULL ,
+ CREATE_TIME TIMESTAMP NOT NULL,
232
+ START_TIME TIMESTAMP DEFAULT NULL ,
233
END_TIME TIMESTAMP DEFAULT NULL,
234
STATUS VARCHAR(10),
235
COMMIT_COUNT BIGINT ,
0 commit comments