From 2a4c655e0049d7f8e4e7eaad8c01af845d3e5fc7 Mon Sep 17 00:00:00 2001 From: chenlinghy Date: Tue, 14 Jul 2020 09:37:42 +0800 Subject: [PATCH] =?UTF-8?q?OCT=20REM:=201.=20=E4=BF=AE=E6=94=B9=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93currentStatus=E5=AD=97=E6=AE=B5=E7=9A=84?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/db/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/db/schema.sql b/src/main/resources/db/schema.sql index 59f7caa3..63d5cbb6 100644 --- a/src/main/resources/db/schema.sql +++ b/src/main/resources/db/schema.sql @@ -58,7 +58,7 @@ CREATE TABLE `dispose_task` `flowDirection` int(11) NULL DEFAULT 2 COMMENT '流量方向, 0:流入;1:流出;2:双向', `attackType` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '攻击类型,默认0, 全部攻击', `flowBandWidth` int(10) UNSIGNED NULL DEFAULT 1024 COMMENT '攻击流量占用带宽', - `currentStatus` int(11) NOT NULL DEFAULT 0 COMMENT '状态,0:停止。1:启动', + `currentStatus` int(11) NOT NULL DEFAULT 0 COMMENT '状态,0:新建;1:运行中;2:停止;3:停止;4:删除', PRIMARY KEY (`id`) USING BTREE, INDEX `dispose_task_device_capacity_id_fk` (`type`) USING BTREE, INDEX `dispose_task_user_account_id_fk` (`accountId`) USING BTREE,