From b93f7d9b40259a7534cafe88e594eec42339b0bb Mon Sep 17 00:00:00 2001 From: Alone <675061370@qq.com> Date: Mon, 6 May 2024 08:47:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data.sql b/data.sql index b4ec115..8eb688e 100644 --- a/data.sql +++ b/data.sql @@ -266,6 +266,8 @@ CREATE TABLE `qf_source` ( `page_views` int(11) NOT NULL DEFAULT '0' COMMENT '浏览量', `status` tinyint(3) NOT NULL DEFAULT '1' COMMENT '状态 0=禁用 1=启用', `is_delete` tinyint(3) NOT NULL DEFAULT '0' COMMENT '是否删除 0=正常 1=软删除', + `is_time` int(11) NOT NULL DEFAULT '0' COMMENT '是否临时文件', + `fid` varchar(255) NOT NULL DEFAULT '' COMMENT '网盘文件标识', `create_time` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会议管理表';