From ad3da9c971640c4ecc00cf4794ccc08057da7d38 Mon Sep 17 00:00:00 2001 From: MitchesD Date: Sat, 1 Oct 2016 13:48:16 +0200 Subject: Core/Player: Implemented account wide mounts Closes #17369 --- sql/updates/auth/6.x/2016_10_01_00_auth.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sql/updates/auth/6.x/2016_10_01_00_auth.sql (limited to 'sql/updates/auth') diff --git a/sql/updates/auth/6.x/2016_10_01_00_auth.sql b/sql/updates/auth/6.x/2016_10_01_00_auth.sql new file mode 100644 index 00000000000..de3ddcc1d2c --- /dev/null +++ b/sql/updates/auth/6.x/2016_10_01_00_auth.sql @@ -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; -- cgit v1.2.3