From 60400d25f5fff2dabd4aa74bbdbc0d2370360a35 Mon Sep 17 00:00:00 2001 From: Shauren Date: Fri, 27 Jun 2025 15:29:30 +0200 Subject: Core/Players: Implemented PlayerDataElementAccount, PlayerDataElementCharacter, PlayerDataFlagAccount and PlayerDataFlagCharacter --- .../hotfixes/master/2025_06_27_00_hotfixes.sql | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 sql/updates/hotfixes/master/2025_06_27_00_hotfixes.sql (limited to 'sql/updates/hotfixes/master') diff --git a/sql/updates/hotfixes/master/2025_06_27_00_hotfixes.sql b/sql/updates/hotfixes/master/2025_06_27_00_hotfixes.sql new file mode 100644 index 00000000000..debe7a8a4ea --- /dev/null +++ b/sql/updates/hotfixes/master/2025_06_27_00_hotfixes.sql @@ -0,0 +1,47 @@ +-- +-- Table structure for table `player_data_element_account` +-- +DROP TABLE IF EXISTS `player_data_element_account`; +CREATE TABLE `player_data_element_account` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `StorageIndex` int NOT NULL DEFAULT '0', + `Type` int NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Table structure for table `player_data_element_character` +-- +DROP TABLE IF EXISTS `player_data_element_character`; +CREATE TABLE `player_data_element_character` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `StorageIndex` int NOT NULL DEFAULT '0', + `Type` int NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Table structure for table `player_data_flag_account` +-- +DROP TABLE IF EXISTS `player_data_flag_account`; +CREATE TABLE `player_data_flag_account` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `StorageIndex` int NOT NULL DEFAULT '0', + `Unknown1107` int NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Table structure for table `player_data_flag_character` +-- +DROP TABLE IF EXISTS `player_data_flag_character`; +CREATE TABLE `player_data_flag_character` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `StorageIndex` int NOT NULL DEFAULT '0', + `Unknown1107` int NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- cgit v1.2.3