server/sql/updates/0.9/4704_mangos_battlemaster_entry.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

11 lines
363 B
SQL

--
-- Definition of table `battlemaster_entry`
--
DROP TABLE IF EXISTS `battlemaster_entry`;
CREATE TABLE `battlemaster_entry` (
`entry` int(11) unsigned NOT NULL default '0' COMMENT 'Entry of a creature',
`bg_template` int(11) unsigned NOT NULL default '0' COMMENT 'Battleground template id',
PRIMARY KEY (`entry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;