为了方便升级
我自己需要
也方便安装了这些插件的朋友
我把我的一些插件的数据库反安装代码整理在一起
(我的插件有数据库的不多)
1: 同一ID可以在限制时间后再次投票
- ALTER TABLE `cdb_forums` DROP `limitime` ;
复制代码
2: 提升/降低帖子 by lu5266
- ALTER TABLE `cdb_posts`DROP `upid` ;
复制代码
3: 买卖贴出售有效期
- ALTER TABLE `cdb_threads` DROP `selltime` ;
复制代码
4: 免付费权限和友情付费 (这个不是我的插件,但是我上面的插件(出售有效期)整合的时候,安装了)
- ALTER TABLE `cdb_usergroups` DROP `issellfree` ;
复制代码
5: 隐藏时效(过了隐藏时效,隐藏自动失效)
- ALTER TABLE `cdb_threads` DROP `hidetime` ;
复制代码
6: 10种自定义参数标题醒目高亮
- ALTER TABLE `cdb_threads` DROP `xm_hl` ;
复制代码
7:发贴样本+话题类型[后台管理,各版快独立,有开关]
- ALTER TABLE `cdb_forums` DROP `sample_sub` ,
- DROP `sample_title` ,DROP `sample_subject` ,
- DROP `sample_content` ;
复制代码
8: 可以在后台设置的背景音乐(各版块独立)
- ALTER TABLE `cdb_forums` DROP `bgmusic` ,
- DROP `bgmusicurl` ,
- DROP `bgmusicloop` ;
复制代码 |