1234567891011 |
- DROP TABLE IF EXISTS `phpcms_comment_setting`;
- CREATE TABLE IF NOT EXISTS `phpcms_comment_setting` (
- `siteid` smallint(5) NOT NULL default '0' COMMENT '站点ID',
- `guest` tinyint(1) default '0' COMMENT '是否允许游客评论',
- `check` tinyint(1) default '0' COMMENT '是否需要审核',
- `code` tinyint(1) default '0' COMMENT '是否开启验证码',
- `add_point` tinyint(3) UNSIGNED NULL DEFAULT 0 COMMENT '添加的积分数' ,
- `del_point` tinyint(3) UNSIGNED NULL DEFAULT 0 COMMENT '扣除的积分数' ,
- PRIMARY KEY (`siteid`)
- ) TYPE=MyISAM;
- INSERT INTO `phpcms_comment_setting` (`siteid`, `guest`, `check`, `code`, `add_point`, `del_point`) VALUES (1, 0, 0, 0, 0, 0);
|