From 6a6c95925ae259be724d87564f3612df9f14a581 Mon Sep 17 00:00:00 2001 From: yurui Date: Wed, 14 Jun 2023 00:03:57 +0800 Subject: [PATCH] v2.1 --- src/main/resources/db.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/db.sql b/src/main/resources/db.sql index 1d9bd7f..dae2e58 100644 --- a/src/main/resources/db.sql +++ b/src/main/resources/db.sql @@ -15,7 +15,7 @@ create table app_config create table job ( - job_id int auto_increment comment 'jobId' + job_id varchar(200) not null comment 'jobId' primary key, app_id int not null comment '应用ID', param varchar(10000) null comment '请求参数',