aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/auth/master/2022_06_09_00_auth.sql8
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;