View Single Post
  #9  
Old 07-05-2002, 03:50 PM
Kolo
Hill Giant
 
Join Date: Jul 2002
Location: Chicago Suburb
Posts: 103
Default

This worked for me, only thing is I havent figured out sending messages yet....then again, I havent tried that hard.


Quote:
Originally posted by Lurker_005 From: http://forums.eqemu.net/showthread.p...p;pagenumber=2
[B]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
Reply With Quote