//幻灯片表
CREATE TABLE ims_ewei_shop_sns_adv
(
id
int(11) NOT NULL AUTO_INCREMENT,
uniacid
int(11) DEFAULT 0,
advname
varchar(50) DEFAULT ‘’ COMMENT ‘幻灯片标题’,
link
varchar(255) DEFAULT ‘’ COMMENT ‘幻灯片链接’,
thumb
varchar(255) DEFAULT ‘’ COMMENT ‘幻灯片图片’,
displayorder
int(11) DEFAULT 0 COMMENT ‘排序’,
enabled
int(11) DEFAULT 0 COMMENT ‘状态’,
PRIMARY KEY (id
),
KEY idx_uniacid
(uniacid
) USING BTREE,
KEY idx_enabled
(enabled
) USING BTREE,
KEY idx_displayorder
(displayorder
) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
//板块表
CREATE TABLE ims_ewei_shop_sns_board
(
id
int(11) NOT NULL AUTO_INCREMENT,
uniacid
int(11) DEFAULT 0,
cid
int(11) DEFAULT 0 COMMENT ‘社区分类ID’,
title
varchar(50) DEFAULT ‘’ COMMENT ‘版块名称’,
logo
varchar(255) DEFAULT ‘’ COMMENT ‘版块LOGO’,
desc
varchar(255) DEFAULT ‘’ COMMENT ‘版块描述’,
displayorder
int(11) DEFAULT 0 COMMENT ‘排序’,
enabled
int(11) DEFAULT 0 COMMENT ‘’,
showgroups
text DEFAULT NULL COMMENT ‘商城会员组浏览权限’,
showlevels
text DEFAULT NULL COMMENT ‘社区会员等级浏览权限’,
postgroups
text DEFAULT NULL COMMENT ‘商城会员组发帖权限’,
postlevels
text DEFAULT NULL COMMENT ‘商城会员等级发帖权限’,
showagentlevels
text DEFAULT NULL COMMENT ‘分销商等级浏览权限’,
postagentlevels
text DEFAULT NULL COMMENT ‘分销商等级发帖权限’,
postcredit
int(11) DEFAULT 0 COMMENT ‘话题积分’,
replycredit
int(11) DEFAULT 0 COMMENT ‘评论积分’,
bestcredit
int(11) DEFAULT 0 COMMENT ‘设置全站精华积分’,
bestboardcredit
int(11) DEFAULT 0 COMMENT ‘设置版块精华积分’,
notagent
tinyint(3) DEFAULT 0 COMMENT ‘允许非分销商浏览’,
notagentpost
tinyint(3) DEFAULT 0 COMMENT ‘允许非分销商发帖’,
topcredit
int(11) DEFAULT 0 COMMENT ‘设置全站置顶积分’,
topboardcredit
int(11) DEFAULT 0 COMMENT ‘设置版块置顶积分’,
status
tinyint(3) DEFAULT 0 COMMENT ‘状态 1显示0隐藏’,
noimage
tinyint(3) DEFAULT 0 COMMENT ‘发图 0允许1不允许’,
novoice
tinyint(3) DEFAULT 0 COMMENT ‘发语音 0允许1不允许’,
needfollow
ti