Removed trailing whitespaces and CRLFs
[getmangos.git] / sql / updates / 0.7 / 3753_battleground_template.sql
blob69e656e8ad21eec57de7ec2fdb86404955089970
1 -- ----------------------------
2 -- Table structure for bg_template
3 -- ----------------------------
4 DROP TABLE IF EXISTS `battleground_template`;
5 CREATE TABLE `battleground_template` (
6   `id` int(11) unsigned NOT NULL,
7   `MaxPlayersPerTeam` int(11) NOT NULL,
8   `MinLvl` int(11) NOT NULL,
9   `MaxLvl` int(11) NOT NULL,
10   `AllianceStartLoc` int(11) unsigned NOT NULL,
11   `AllianceStartO` float NOT NULL,
12   `HordeStartLoc` int(11) unsigned NOT NULL,
13   `HordeStartO` float NOT NULL,
14   PRIMARY KEY  (`id`)
15 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
17 -- ----------------------------
18 -- Records
19 -- ----------------------------
21 INSERT INTO `battleground_template` VALUES ('1', '0', '0', '0',  '611', '2.72532',  '610','2.27452');
22 INSERT INTO `battleground_template` VALUES ('2', '0', '0', '0',  '769', '3.14159',  '770','3.14159');
23 INSERT INTO `battleground_template` VALUES ('3', '0', '0', '0',  '890', '3.40156',  '889','0.263892');
24 INSERT INTO `battleground_template` VALUES ('7', '0', '0', '0', '1103', '3.40156', '1104','0.263892');