diff options
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/6.x/2016_10_01_00_auth.sql | 10 |
1 files changed, 10 insertions, 0 deletions
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; |
