Give this a try for the EQMessages table:
Code:
CREATE TABLE EQMessages (
id int(11) unsigned NOT NULL auto_increment,
recip varchar(64) NOT NULL,
sender varchar(64) NOT NULL,
subject varchar(255) NOT NULL default '',
body text NOT NULL default '',
date date NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
I think that is all the fields, and reasonable field sizes