1 2 3 | Discuz! Database Error (145) Table “XXXX/security_failedlog” is marked as crashed and should be repaired SELECT count(*) FROM security_failedlog |
1 | DROP TABLE IF EXISTS pre_security_failedlog; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | CREATE TABLE pre_security_failedlog ( id int(11) NOT NULL AUTO_INCREMENT, reporttype char(20) NOT NULL, tid int(10) unsigned NOT NULL DEFAULT '0', pid int(10) unsigned NOT NULL DEFAULT '0', uid int(10) unsigned NOT NULL DEFAULT '0', failcount int(10) unsigned NOT NULL DEFAULT '0', createtime int (10) unsigned NOT NULL DEFAULT '0', posttime int(10) unsigned NOT NULL DEFAULT '0', delreason char(255) NOT NULL, scheduletime int(10) unsigned NOT NULL DEFAULT '0', lastfailtime int(10) unsigned NOT NULL DEFAULT '0', extra1 int(10) unsigned NOT NULL, extra2 char(255) NOT NULL DEFAULT '0', PRIMARY KEY (id), KEY pid (pid), KEY uid (uid) ) ENGINE=MYISAM DEFAULT CHARSET=gbk |
欢迎光临 互联网创业基地 (http://bbs.jusiboxin.com/) | Powered by Discuz! X3.2 |