mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 19:37:07 +00:00
11 lines
363 B
SQL
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;
|