Renamed game_graveyard_orientation to graveyard_orientation

This commit is contained in:
Kinzcool
2013-02-03 23:11:52 -05:00
parent 1a92b11ae3
commit 1537de5b39

View File

@@ -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),