From 4a4453ed8fa0905f3d871b1c8af1e35b002c0b58 Mon Sep 17 00:00:00 2001 From: llgoer Date: Sun, 13 Nov 2022 20:16:16 +0800 Subject: [PATCH] Update sql-dftables.txt --- src/install/sql-dftables.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/install/sql-dftables.txt b/src/install/sql-dftables.txt index dfbf4f97..ba4d1e5d 100755 --- a/src/install/sql-dftables.txt +++ b/src/install/sql-dftables.txt @@ -404,7 +404,7 @@ CREATE TABLE `#@__feedback_goodbad` ( `fgid` INT(11) NOT NULL AUTO_INCREMENT, `mid` INT(11) NOT NULL DEFAULT '0', `fid` INT(11) NOT NULL DEFAULT '0', - `fgtype` TINYINT(4) NOT NULL DEFAULT '0' COMMENT '0:good 1:bad', + `fgtype` TINYINT(4) NOT NULL DEFAULT '0', PRIMARY KEY (`fgid`) ) TYPE=MyISAM; @@ -882,11 +882,11 @@ CREATE TABLE `#@__softconfig` ( DROP TABLE IF EXISTS `#@__statistics`; CREATE TABLE `#@__statistics` ( `id` int NOT NULL AUTO_INCREMENT, - `sdate` int DEFAULT NULL COMMENT '记录日期', - `pv` int DEFAULT NULL COMMENT 'PV', - `uv` int DEFAULT NULL COMMENT 'UV', - `ip` int DEFAULT NULL COMMENT 'IP', - `vv` int DEFAULT NULL COMMENT 'vv', + `sdate` int DEFAULT NULL, + `pv` int DEFAULT NULL, + `uv` int DEFAULT NULL, + `ip` int DEFAULT NULL, + `vv` int DEFAULT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM;