Core/Players: Implemented setting tradeskill recipes as favorite

This commit is contained in:
Shauren
2022-12-17 20:27:13 +01:00
parent e275c39586
commit 0555ab2f56
12 changed files with 137 additions and 18 deletions

View File

@@ -1625,6 +1625,30 @@ LOCK TABLES `character_spell_cooldown` WRITE;
/*!40000 ALTER TABLE `character_spell_cooldown` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_spell_favorite`
--
DROP TABLE IF EXISTS `character_spell_favorite`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `character_spell_favorite` (
`guid` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`spell` int unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_spell_favorite`
--
LOCK TABLES `character_spell_favorite` WRITE;
/*!40000 ALTER TABLE `character_spell_favorite` DISABLE KEYS */;
/*!40000 ALTER TABLE `character_spell_favorite` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_stats`
--
@@ -3665,7 +3689,8 @@ INSERT INTO `updates` VALUES
('2022_10_03_01_characters.sql','7CF58BD9CC366301CC992017028568C8774C4BC2','ARCHIVED','2022-10-03 22:36:38',0),
('2022_10_03_02_characters.sql','33135AB3132943F15F4849A16EC5EFEA402F24F6','ARCHIVED','2022-10-03 22:38:27',0),
('2022_11_20_00_characters.sql','4EB8BB24CAF16B0962DF3EF92C77BE05E234CFA6','ARCHIVED','2022-11-20 11:05:20',0),
('2022_12_16_00_characters.sql','ABD1E101FE6629E0520C91E98942E55067EDD492','RELEASED','2022-12-16 22:52:19',0);
('2022_12_16_00_characters.sql','ABD1E101FE6629E0520C91E98942E55067EDD492','RELEASED','2022-12-16 22:52:19',0),
('2022_12_17_00_characters.sql','3E005BD6B9C60653749B0B3C19CBC497092B9CCB','RELEASED','2022-12-17 18:26:43',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;