Core/Players: Implemented PlayerDataElementAccount, PlayerDataElementCharacter, PlayerDataFlagAccount and PlayerDataFlagCharacter

This commit is contained in:
Shauren
2025-06-27 15:29:30 +02:00
parent e0f3291eab
commit 60400d25f5
26 changed files with 996 additions and 23 deletions

View File

@@ -1225,6 +1225,55 @@ LOCK TABLES `character_pet_declinedname` WRITE;
/*!40000 ALTER TABLE `character_pet_declinedname` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_player_data_element`
--
DROP TABLE IF EXISTS `character_player_data_element`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `character_player_data_element` (
`characterGuid` bigint unsigned NOT NULL,
`playerDataElementCharacterId` int unsigned NOT NULL,
`floatValue` float DEFAULT NULL,
`int64Value` bigint DEFAULT NULL,
PRIMARY KEY (`characterGuid`,`playerDataElementCharacterId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_player_data_element`
--
LOCK TABLES `character_player_data_element` WRITE;
/*!40000 ALTER TABLE `character_player_data_element` DISABLE KEYS */;
/*!40000 ALTER TABLE `character_player_data_element` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_player_data_flag`
--
DROP TABLE IF EXISTS `character_player_data_flag`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `character_player_data_flag` (
`characterGuid` bigint unsigned NOT NULL,
`storageIndex` int unsigned NOT NULL,
`mask` bigint unsigned NOT NULL,
PRIMARY KEY (`characterGuid`,`storageIndex`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_player_data_flag`
--
LOCK TABLES `character_player_data_flag` WRITE;
/*!40000 ALTER TABLE `character_player_data_flag` DISABLE KEYS */;
/*!40000 ALTER TABLE `character_player_data_flag` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_pvp_talent`
--
@@ -3781,7 +3830,8 @@ INSERT INTO `updates` VALUES
('2024_12_22_00_characters.sql','A2F24564430C5BCC96C279E843FA3548B1F831EE','ARCHIVED','2024-12-22 02:56:17',0),
('2025_01_04_00_characters.sql','403E8B642A67765A04A0A4D5BC0752288208079C','ARCHIVED','2025-01-04 16:31:39',0),
('2025_03_29_00_characters.sql','6A49C236D0B8CCD8A5B6B51F60E116B3380772D7','ARCHIVED','2025-03-29 01:12:13',0),
('2025_05_31_00_characters.sql','C240EB5C4008B6AA0514802A18D7DD875680DE82','ARCHIVED','2025-05-31 19:45:56',0);
('2025_05_31_00_characters.sql','C240EB5C4008B6AA0514802A18D7DD875680DE82','ARCHIVED','2025-05-31 19:45:56',0),
('2025_06_27_00_characters.sql','35088BA5BA4BD3B7FAAD6FD4FAE38E52A5B71CD8','RELEASED','2025-06-27 14:22:08',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;