aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKinzcool <kinzzcool@hotmail.com>2013-02-03 23:11:52 -0500
committerKinzcool <kinzzcool@hotmail.com>2013-02-03 23:11:52 -0500
commit1537de5b39d032b0d560db23fc4330f313dda67d (patch)
tree85f64abe5caa8761c4504879582defdb99776857
parent1a92b11ae3b3ad7d3db883f7fc6fbaa9a31d8379 (diff)
Renamed `game_graveyard_orientation` to `graveyard_orientation`
-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),