Table structures are below:
#
Table structure for table planet_history
#
CREATE TABLE planet_history (
id int(11) NOT NULL auto_increment,
x int(11) NOT NULL default '0',
y int(11) NOT NULL default '0',
z int(11) NOT NULL default '0',
old_score int(11) NOT NULL default '0',
old_rank int(11) NOT NULL default '0',
old_size int(11) NOT NULL default '0',
KEY id (id),
KEY old_score (old_score),
KEY old_rank (old_rank),
KEY old_size (old_size)
) TYPE=MyISAM;
AND
CREATE TABLE planet_dump (
id int(11) NOT NULL auto_increment,
x int(11) NOT NULL default '0',
y int(11) NOT NULL default '0',
z int(11) NOT NULL default '0',
planetname text NOT NULL,
rulername text NOT NULL,
size int(11) NOT NULL default '0',
score int(11) NOT NULL default '0',
fullcoord varchar(20) NOT NULL default '',
rank int(11) NOT NULL default '0',
KEY id (id),
KEY x (x),
KEY y (y),
KEY z (z),
KEY size (size),
KEY score (score),
KEY rank (rank),
KEY id_2 (id)
) TYPE=MyISAM;
thanks