View Single Post
  #9  
Old 06-17-2008, 02:06 PM
Avarion
Sarnak
 
Join Date: Apr 2004
Posts: 31
Default

I tryed to execute all SQL-Commands from the changelog but most of em seemed to be included in the database.

Code:
CREATE TABLE `graveyard` (
  `id` int(11) NOT NULL auto_increment,
  `zone_id` int(4) NOT NULL default '0',
  `x` float NOT NULL default '0',
  `y` float NOT NULL default '0',
  `z` float NOT NULL default '0',
  `heading` float NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `zone_id` (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
This code does nothing. Still there is no table graveyard in my database.
Reply With Quote