Преглед изворни кода

Update 'scheduler/src/main/resources/table.sql'

jxing пре 5 година
родитељ
комит
1c82b66a7e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      scheduler/src/main/resources/table.sql

+ 1 - 1
scheduler/src/main/resources/table.sql

@@ -5,7 +5,7 @@ create table if not exists `task`(
     `task_name` varchar(100),
     `task_cmd` text,
     `task_param` text,
-    `task_status` int comment '0 Waiting, 1 Sending, 2 Sent, 3 FileDownloadException, 4 CommandExecuteException, 5 Finished',
+    `task_status` int DEFAULT 0 comment '0 Waiting, 1 Sending, 2 Sent, 3 FileDownloadException, 4 CommandExecuteException, 5 Finished',
     `task_result_json` text,
 	`task_sent_time` long comment '客户端成功接收任务的时间',
     `task_last_client` varchar(255),