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.