From 29d5169b5eef3bb4863dbe9dd9537416dbea6048 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Wed, 7 Jul 2021 09:49:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20sql=E8=84=9A=E6=9C=AC=E4=B8=AD=E5=B8=A6?= =?UTF-8?q?=E4=BA=86=E5=BA=93=E5=90=8D#4438?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/migration/V89__v1.10.4_release.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/resources/db/migration/V89__v1.10.4_release.sql b/backend/src/main/resources/db/migration/V89__v1.10.4_release.sql index 14ccf3b857..2f995e6218 100644 --- a/backend/src/main/resources/db/migration/V89__v1.10.4_release.sql +++ b/backend/src/main/resources/db/migration/V89__v1.10.4_release.sql @@ -19,5 +19,5 @@ ALTER TABLE `user` ALTER TABLE issues ADD platform_status varchar(50) NULL COMMENT '第三方平台状态'; -- 定时同步缺陷 -INSERT INTO metersphere.schedule (id,`key`,`type`,value,`group`,job,enable,resource_id,user_id,workspace_id,create_time,update_time,project_id,name) +INSERT INTO schedule (id,`key`,`type`,value,`group`,job,enable,resource_id,user_id,workspace_id,create_time,update_time,project_id,name) VALUES ('7a23d4db-9909-438d-9e36-58e432c8c4ae','ISSUE_SYNC','CRON','0 0 3 * * ?','ISSUE_SYNC','io.metersphere.job.sechedule.IssueSyncJob',1,'system','admin','system',unix_timestamp() * 1000,unix_timestamp() * 1000,'system','ISSUE_SYNC');