本帖最后由 拥有成功 于 2014-8-20 09:16 编辑
已解决,在后台站长--数据库--升级,
CREATE TABLE IF NOT EXISTS ”自己的表前缀“_mobile_wechat_resource (
`id` int(10) unsigned NOT NULL auto_increment,
`name` varchar(255) NOT NULL default '',
`dateline` int(10) unsigned NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT 0,
`data` text NOT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`)
) ENGINE=MYISAM;
复制粘贴
CREATE TABLE IF NOT EXISTS ”自己的表前缀“_mobile_wechat_resource (
`id` int(10) unsigned NOT NULL auto_increment,
`name` varchar(255) NOT NULL default '',
`dateline` int(10) unsigned NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT 0,
`data` text NOT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`)
) ENGINE=MYISAM;
复制粘贴,在去工具更新缓存就好了 |