Selaa lähdekoodia

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

孟向歌 5 vuotta sitten
vanhempi
commit
aac1042dd8
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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`),