diff options
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/master/2025_06_27_00_auth.sql | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sql/updates/auth/master/2025_06_27_00_auth.sql b/sql/updates/auth/master/2025_06_27_00_auth.sql new file mode 100644 index 00000000000..d7ace8563f1 --- /dev/null +++ b/sql/updates/auth/master/2025_06_27_00_auth.sql @@ -0,0 +1,22 @@ +-- +-- Table structure for table `battlenet_account_player_data_element` +-- +DROP TABLE IF EXISTS `battlenet_account_player_data_element`; +CREATE TABLE `battlenet_account_player_data_element` ( + `battlenetAccountId` int unsigned NOT NULL, + `playerDataElementAccountId` int unsigned NOT NULL, + `floatValue` float DEFAULT NULL, + `int64Value` bigint DEFAULT NULL, + PRIMARY KEY (`battlenetAccountId`,`playerDataElementAccountId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Table structure for table `battlenet_account_player_data_flag` +-- +DROP TABLE IF EXISTS `battlenet_account_player_data_flag`; +CREATE TABLE `battlenet_account_player_data_flag` ( + `battlenetAccountId` int unsigned NOT NULL, + `storageIndex` int unsigned NOT NULL, + `mask` bigint unsigned NOT NULL, + PRIMARY KEY (`battlenetAccountId`,`storageIndex`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
