server/sql/updates/0.7/3753_battleground_template.sql
freghar 95840fd2c3 Removed trailing whitespaces and CRLFs
With /contrib/ and /dep/ excluded.

Signed-off-by: freghar <compmancz@gmail.com>
2008-10-22 11:52:03 +02:00

24 lines
1,023 B
SQL

-- ----------------------------
-- Table structure for bg_template
-- ----------------------------
DROP TABLE IF EXISTS `battleground_template`;
CREATE TABLE `battleground_template` (
`id` int(11) unsigned NOT NULL,
`MaxPlayersPerTeam` int(11) NOT NULL,
`MinLvl` int(11) NOT NULL,
`MaxLvl` int(11) NOT NULL,
`AllianceStartLoc` int(11) unsigned NOT NULL,
`AllianceStartO` float NOT NULL,
`HordeStartLoc` int(11) unsigned NOT NULL,
`HordeStartO` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `battleground_template` VALUES ('1', '0', '0', '0', '611', '2.72532', '610','2.27452');
INSERT INTO `battleground_template` VALUES ('2', '0', '0', '0', '769', '3.14159', '770','3.14159');
INSERT INTO `battleground_template` VALUES ('3', '0', '0', '0', '890', '3.40156', '889','0.263892');
INSERT INTO `battleground_template` VALUES ('7', '0', '0', '0', '1103', '3.40156', '1104','0.263892');