数据库字段

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Discuz!数据库字段说明

cdb_access 用户权限表

cdb_adminactions 管理动作表

cdb_admingroups 管理组数据表

cdb_adminnotes 管理员留言

cdb_adminsessions 管理员后台在线记录cdb_advertisements 广告资料表

cdb_announcements 论坛公告资料表cdb_attachments 附件资料表

cdb_attachtypes 附件类型表

cdb_banned 被禁止的ip列表

cdb_bbcodes bb代码资料表

cdb_blogcaches 博客缓存表

cdb_buddys 好友信息表

cdb_creditslog 积分交易记录表

cdb_crons 计划任务表

cdb_failedlogins 错误登录记录

cdb_favorites 个人收藏信息表

cdb_forumfields 板块扩展信息数据表cdb_forumlinks 友情链接数据表

cdb_forums 版块资料表

cdb_medals 勋章资料表

cdb_memberfields 用户扩展资料表

cdb_members 用户基本资料表

cdb_moderators 版主信息数据表

cdb_modworks 版主工作记录表

cdb_onlinelist 在线列表定制

cdb_onlinetime 用户在线时间信息表cdb_orders 订单数据表

cdb_paymentlog 支付记录

cdb_pluginhooks 插件钩子表

cdb_plugins 插件表

cdb_pluginvars 插件配置表

cdb_pms 短信资料表

cdb_pmsearchindex 短消息搜索缓存表cdb_polls 投票帖资料表

cdb_posts 帖子资料表

cdb_profilefields 用户栏目定制

cdb_promotions 论坛推广

cdb_ranks 头衔表

cdb_ratelog 帖子评分记录表

cdb_regips 注册ip记录表

cdb_relatedthreads 相关主题

cdb_rsscaches RSS缓存

cdb_searchindex 搜索缓存

cdb_sessions 在线表

cdb_settings 论坛设置表

cdb_smilies 表情信息表

cdb_stats 统计数据表

cdb_statvars 统计变量表

cdb_styles 风格

cdb_stylevars 风格变量表

cdb_subscrīptions 订阅信息表

cdb_templates 模板

cdb_threads 主题资料表

cdb_threadsmod 主题管理记录表

cdb_threadtypes 主题分类表

cdb_usergroups 用户组数据表

cdb_validating 等待人工审核的会员记录

cdb_words 词语过滤表

==================部份表解析=====

-- 表的结构`cdb_access`

--

DROP TABLE IF EXISTS cdb_access; CREATE TABLE cdb_access (

uid mediumint(8) unsigned NOT NULL default '0',

fid smallint(6) unsigned NOT NULL default '0',

allowview tinyint(1) NOT NULL default '0',

allowpost tinyint(1) NOT NULL default '0',

allowreply tinyint(1) NOT NULL default '0',

allowgetattach tinyint(1) NOT NULL default '0',

allowpostattach tinyint(1) NOT NULL default '0',

PRIMARY KEY (uid,fid)

) TYPE=MyISAM;

--

--

数据表说明:当某用户对某些版块有特定的权限的时候,该表记录了该用户在这些版块有什么权限。

属性说明:

uid--mediumint(8)--会员的UID编号

fid--smallint(6)--版块的ID号

allowview--tinyint(1)--是否允许查看贴子

allowpost--tinyint(1)--是否允许发贴

allowreply--tinyint(1)--是否允许回复

allowgetattach--tinyint(1)--是否允许下载附件

allowpostattach tinyint(1) --是否允许上传附件

--

-- 表的结构`cdb_adminactions`

--

DROP TABLE IF EXISTS cdb_adminactions;

CREATE TABLE cdb_adminactions (

admingid smallint(6) unsigned NOT NULL default '0',

disabledactions text NOT NULL,

PRIMARY KEY (admingid)

) TYPE=MyISAM;

--

数据表功能介绍:管理组管理信息表。

admingid smallint(6)--管理组组id

disabledactions text--禁止行为

-------------------------------------------------------------------------------------------------------------------------------------

-- 表的结构`cdb_admingroups`

--

DROP TABLE IF EXISTS cdb_admingroups;

CREATE TABLE cdb_admingroups (

admingid smallint(6) unsigned NOT NULL default '0',

alloweditpost tinyint(1) NOT NULL default '0',

alloweditpoll tinyint(1) NOT NULL default '0',

allowstickthread tinyint(1) NOT NULL default '0',

allowmodpost tinyint(1) NOT NULL default '0',

allowdelpost tinyint(1) NOT NULL default '0',

allowmassprune tinyint(1) NOT NULL default '0',

allowrefund tinyint(1) NOT NULL default '0',

allowcensorword tinyint(1) NOT NULL default '0',

allowviewip tinyint(1) NOT NULL default '0',

allowbanip tinyint(1) NOT NULL default '0',

allowedituser tinyint(1) NOT NULL default '0',

allowmoduser tinyint(1) NOT NULL default '0',

allowbanuser tinyint(1) NOT NULL default '0',

allowpostannounce tinyint(1) NOT NULL default '0',

allowviewlog tinyint(1) NOT NULL default '0',

disablepostctrl tinyint(1) NOT NULL default '0',

相关文档
最新文档