LZ先做好数据库的备份,然后到后台,系统工具,数据库升级一下sql语句即可:
- DROP TABLE IF EXISTS cdb_rsscaches;
- CREATE TABLE cdb_rsscaches (
- lastupdate int(10) unsigned NOT NULL DEFAULT '0',
- fid smallint(6) unsigned NOT NULL DEFAULT '0',
- tid mediumint(8) unsigned NOT NULL DEFAULT '0',
- dateline int(10) unsigned NOT NULL DEFAULT '0',
- forum char(50) NOT NULL DEFAULT '',
- author char(15) NOT NULL DEFAULT '',
- `subject` char(80) NOT NULL DEFAULT '',
- description char(255) NOT NULL DEFAULT '',
- UNIQUE KEY tid (tid),
- KEY fid (fid,dateline)
- ) TYPE=MyISAM;
复制代码 |