Really strange… The only difference I can see is the mysql engine version. You run 5.5.25 when I run the community version 5.5.17.
1. Can you DROP the table wp_psk_s2msfb_downloads
please ?
2. And then create it manually :
CREATE TABLE wp_psk_s2msfb_downloads (
id INT(11) NOT NULL AUTO_INCREMENT,
created TIMESTAMP NOT NULL,
userid BIGINT(20) NOT NULL,
useremail VARCHAR(100) NOT NULL,
ip VARCHAR(100) NOT NULL,
filepath VARCHAR(4000) NOT NULL,
filemd5 VARCHAR(32) NOT NULL,
notified TIMESTAMP,
PRIMARY KEY (id)
) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
3. If it does not change anything, could try again with this CREATE statement please ? (just change the mysql engine type)
CREATE TABLE wp_psk_s2msfb_downloads (
id INT(11) NOT NULL AUTO_INCREMENT,
created TIMESTAMP NOT NULL,
userid BIGINT(20) NOT NULL,
useremail VARCHAR(100) NOT NULL,
ip VARCHAR(100) NOT NULL,
filepath VARCHAR(4000) NOT NULL,
filemd5 VARCHAR(32) NOT NULL,
notified TIMESTAMP,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
4. Finally, can you try this next to drop and re-create :
ALTER TABLE wp_psk_s2msfb_downloads
ADD INDEX ( created
) ;
ALTER TABLE wp_psk_s2msfb_downloads
ADD INDEX ( userid
) ;