добавлен mythic+

This commit is contained in:
2025-08-30 19:38:04 +04:00
parent 6dcd1cd327
commit a3afcbd2fe
12 changed files with 6437 additions and 0 deletions
@@ -0,0 +1,45 @@
-- --------------------------------------------------------
-- Host: localhost
-- Server version: 8.0.42 - MySQL Community Server - GPL
-- Server OS: Linux
-- HeidiSQL Version: 12.11.0.7065
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Dumping structure for table acore_characters.character_mythic_history
DROP TABLE IF EXISTS `character_mythic_history`;
CREATE TABLE IF NOT EXISTS `character_mythic_history` (
`run_id` int unsigned NOT NULL AUTO_INCREMENT,
`date` date NOT NULL,
`mapId` smallint unsigned NOT NULL,
`instanceId` int unsigned DEFAULT NULL,
`tier` tinyint unsigned NOT NULL,
`start_time` timestamp NULL DEFAULT NULL,
`end_time` timestamp NULL DEFAULT NULL,
`duration` int unsigned DEFAULT NULL,
`deaths` tinyint unsigned DEFAULT '0',
`completed` tinyint(1) DEFAULT '0',
`affixes` text COLLATE utf8mb4_general_ci,
`member_1` int unsigned DEFAULT NULL,
`member_2` int unsigned DEFAULT NULL,
`member_3` int unsigned DEFAULT NULL,
`member_4` int unsigned DEFAULT NULL,
`member_5` int unsigned DEFAULT NULL,
PRIMARY KEY (`run_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Data exporting was unselected.
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
@@ -0,0 +1,32 @@
-- --------------------------------------------------------
-- Host: localhost
-- Server version: 8.0.42 - MySQL Community Server - GPL
-- Server OS: Linux
-- HeidiSQL Version: 12.11.0.7065
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Dumping structure for table acore_characters.character_mythic_keys
DROP TABLE IF EXISTS `character_mythic_keys`;
CREATE TABLE IF NOT EXISTS `character_mythic_keys` (
`guid` int unsigned NOT NULL,
`mapId` int unsigned NOT NULL,
`tier` int unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Data exporting was unselected.
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
@@ -0,0 +1,52 @@
-- --------------------------------------------------------
-- Host: localhost
-- Server version: 8.0.42 - MySQL Community Server - GPL
-- Server OS: Linux
-- HeidiSQL Version: 12.11.0.7065
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Dumping structure for table acore_characters.character_mythic_rating
DROP TABLE IF EXISTS `character_mythic_rating`;
CREATE TABLE IF NOT EXISTS `character_mythic_rating` (
`guid` int unsigned NOT NULL,
`total_runs` int DEFAULT '0',
`total_points` decimal(7,2) DEFAULT '0.00',
`completed_runs` int DEFAULT '0' COMMENT 'Successfully completed runs',
`out_of_time_runs` int DEFAULT '0' COMMENT 'Runs that failed due to time limit',
`too_many_death_runs` int DEFAULT '0' COMMENT 'Runs that failed due to death limit',
`574` int DEFAULT '0' COMMENT 'Utgarde Keep',
`575` int DEFAULT '0' COMMENT 'Utgarde Pinnacle',
`576` int DEFAULT '0' COMMENT 'The Nexus',
`578` int DEFAULT '0' COMMENT 'The Oculus',
`595` int DEFAULT '0' COMMENT 'The Culling of Stratholme',
`599` int DEFAULT '0' COMMENT 'Halls of Stone',
`600` int DEFAULT '0' COMMENT 'Drak''Tharon Keep',
`601` int DEFAULT '0' COMMENT 'Azjol-Nerub',
`602` int DEFAULT '0' COMMENT 'Halls of Lightning',
`604` int DEFAULT '0' COMMENT 'Gundrak',
`608` int DEFAULT '0' COMMENT 'The Violet Hold',
`619` int DEFAULT '0' COMMENT 'Ahn''kahet: The Old Kingdom',
`632` int DEFAULT '0' COMMENT 'Devourer of Souls',
`650` int DEFAULT '0' COMMENT 'Trial of the Champion',
`658` int DEFAULT '0' COMMENT 'Pit of Saron',
`668` int DEFAULT '0' COMMENT 'Halls of Reflection',
`last_updated` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Data exporting was unselected.
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
@@ -0,0 +1,41 @@
-- --------------------------------------------------------
-- Host: localhost
-- Server version: 8.0.42 - MySQL Community Server - GPL
-- Server OS: Linux
-- HeidiSQL Version: 12.11.0.7065
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Dumping structure for table acore_characters.character_mythic_vault
DROP TABLE IF EXISTS `character_mythic_vault`;
CREATE TABLE IF NOT EXISTS `character_mythic_vault` (
`guid` int unsigned NOT NULL,
`week_start` date NOT NULL,
`highest_tier_1` tinyint unsigned DEFAULT NULL,
`highest_tier_2` tinyint unsigned DEFAULT NULL,
`highest_tier_3` tinyint unsigned DEFAULT NULL,
`successful_runs` tinyint unsigned DEFAULT '0',
`item_1_id` int unsigned DEFAULT NULL,
`item_2_id` int unsigned DEFAULT NULL,
`item_3_id` int unsigned DEFAULT NULL,
`items_generated` tinyint(1) DEFAULT '0',
`has_collected` tinyint(1) DEFAULT '0',
`can_collect` tinyint(1) DEFAULT '0',
PRIMARY KEY (`guid`,`week_start`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- Data exporting was unselected.
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
@@ -0,0 +1,33 @@
-- --------------------------------------------------------
-- Host: localhost
-- Server version: 8.0.42 - MySQL Community Server - GPL
-- Server OS: Linux
-- HeidiSQL Version: 12.11.0.7065
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Dumping structure for table acore_characters.character_mythic_weekly_affixes
DROP TABLE IF EXISTS `character_mythic_weekly_affixes`;
CREATE TABLE IF NOT EXISTS `character_mythic_weekly_affixes` (
`week_start` date NOT NULL,
`affix1` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
`affix2` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
`affix3` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
PRIMARY KEY (`week_start`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Data exporting was unselected.
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;