Core/Player: Implemented account wide mounts

Closes #17369
This commit is contained in:
MitchesD
2016-10-01 13:48:16 +02:00
committed by Shauren
parent 20f0db0e47
commit ad3da9c971
15 changed files with 343 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
--
-- Table structure for table `battlenet_account_mounts`
--
DROP TABLE IF EXISTS `battlenet_account_mounts`;
CREATE TABLE `battlenet_account_mounts` (
`battlenetAccountId` int(10) unsigned NOT NULL,
`mountSpellId` int(10) unsigned NOT NULL,
`flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`battlenetAccountId`,`mountSpellId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;