Browse Source

更新 'scheduler/src/main/resources/table.sql'

孟向歌 5 years ago
parent
commit
aac1042dd8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scheduler/src/main/resources/table.sql

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

@@ -34,7 +34,7 @@ create table if not exists `task`(
     `task_cmd` text,
     `task_param` text,
     `task_status` int comment '0 Waiting, 1 Success, -1 downloadError, -2 execute error',
-    `task_result_json` text,
+    `task_result_json` longtext,
 	`task_expected_finish_time` int comment '预期完成时间, 单位是s',
 	`task_add_time` timestamp DEFAULT CURRENT_TIMESTAMP,
     PRIMARY KEY (`tid`),