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 45d7662 commit 6dc83b8Copy full SHA for 6dc83b8
spring-cloud-task-core/src/main/resources/org/springframework/cloud/task/schema-sqlserver.sql
@@ -25,7 +25,7 @@ CREATE TABLE TASK_TASK_BATCH (
25
references TASK_EXECUTION(TASK_EXECUTION_ID)
26
) ;
27
28
-CREATE TABLE TASK_SEQ (ID BIGINT IDENTITY);
+CREATE SEQUENCE TASK_SEQ START WITH 0 MINVALUE 0 MAXVALUE 9223372036854775807 NO CACHE NO CYCLE;
29
30
CREATE TABLE TASK_LOCK (
31
LOCK_KEY CHAR(36) NOT NULL,
0 commit comments