diff options
-rw-r--r-- | sql/updates/world/2013_02_04_00_world_graveyard_orientation_434.sql (renamed from sql/updates/world/2013_02_04_00_world_game_graveyard_orientation_434.sql) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/updates/world/2013_02_04_00_world_game_graveyard_orientation_434.sql b/sql/updates/world/2013_02_04_00_world_graveyard_orientation_434.sql index 6b6b2ee7ed0..e140bbd3c4c 100644 --- a/sql/updates/world/2013_02_04_00_world_game_graveyard_orientation_434.sql +++ b/sql/updates/world/2013_02_04_00_world_graveyard_orientation_434.sql @@ -1,12 +1,12 @@ -DROP TABLE IF EXISTS `game_graveyard_orientation`; -CREATE TABLE IF NOT EXISTS `game_graveyard_orientation` ( +DROP TABLE IF EXISTS `graveyard_orientation`; +CREATE TABLE IF NOT EXISTS `graveyard_orientation` ( `Id` int(10) unsigned NOT NULL DEFAULT '0', `Orientation` float NOT NULL DEFAULT '0', PRIMARY KEY (`Id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Orientations used by graveyards'; -INSERT INTO `game_graveyard_orientation` (`Id`, `Orientation`) VALUES +INSERT INTO `graveyard_orientation` (`Id`, `Orientation`) VALUES (1, 0), (2, 0.898845), (3, 3.84632), |