diff options
| author | fluxurion <zoltan@fatalerror.hu> | 2022-06-01 14:05:54 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-06-09 21:27:02 +0200 |
| commit | 125ada42f6be220a52315d06d61e472a2ba83395 (patch) | |
| tree | 9d6dcaf77654b98a1610fe2e162d988708f03081 /sql/updates/auth | |
| parent | b11574871e11e5e34b59e1d89b7fcad428fdfb56 (diff) | |
Core/Transmog: Implemented Transmog Illusions + Spelleffect to unlock them
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/master/2022_06_09_00_auth.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/auth/master/2022_06_09_00_auth.sql b/sql/updates/auth/master/2022_06_09_00_auth.sql new file mode 100644 index 00000000000..da9ddd605af --- /dev/null +++ b/sql/updates/auth/master/2022_06_09_00_auth.sql @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS `battlenet_account_transmog_illusions`; +CREATE TABLE `battlenet_account_transmog_illusions` ( + `battlenetAccountId` int unsigned NOT NULL, + `blobIndex` smallint unsigned NOT NULL, + `illusionMask` int unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`battlenetAccountId`,`blobIndex`), + CONSTRAINT `battlenet_account_transmog_illusions_ibfk_1` FOREIGN KEY (`battlenetAccountId`) REFERENCES `battlenet_accounts` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
