mirror of
https://github.com/ProjectSkyfire/SkyFire_548
synced 2026-08-18 06:32:13 -04:00
2041 lines
93 KiB
SQL
2041 lines
93 KiB
SQL
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!50503 SET NAMES UTF8 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!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 */;
|
|
DROP TABLE IF EXISTS `account_battle_pet`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `account_battle_pet` (
|
|
`id` bigint unsigned NOT NULL DEFAULT '0',
|
|
`accountId` int unsigned NOT NULL DEFAULT '0',
|
|
`species` smallint unsigned NOT NULL DEFAULT '0',
|
|
`nickname` varchar(16) NOT NULL DEFAULT '',
|
|
`timestamp` int unsigned NOT NULL DEFAULT '0',
|
|
`level` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`xp` smallint unsigned NOT NULL DEFAULT '0',
|
|
`health` smallint unsigned NOT NULL DEFAULT '0',
|
|
`maxHealth` smallint unsigned NOT NULL DEFAULT '0',
|
|
`power` smallint unsigned NOT NULL DEFAULT '0',
|
|
`speed` smallint unsigned NOT NULL DEFAULT '0',
|
|
`quality` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`breed` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`flags` smallint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `account_battle_pet` WRITE;
|
|
/*!40000 ALTER TABLE `account_battle_pet` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `account_battle_pet` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `account_battle_pet_slots`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `account_battle_pet_slots` (
|
|
`accountId` int unsigned NOT NULL DEFAULT '0',
|
|
`slot1` bigint unsigned NOT NULL DEFAULT '0',
|
|
`slot2` bigint unsigned NOT NULL DEFAULT '0',
|
|
`slot3` bigint unsigned NOT NULL DEFAULT '0',
|
|
`flags` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`accountId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `account_battle_pet_slots` WRITE;
|
|
/*!40000 ALTER TABLE `account_battle_pet_slots` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `account_battle_pet_slots` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `account_data`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `account_data` (
|
|
`accountId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
|
|
`type` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`time` int unsigned NOT NULL DEFAULT '0',
|
|
`data` blob NOT NULL,
|
|
PRIMARY KEY (`accountId`,`type`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `account_data` WRITE;
|
|
/*!40000 ALTER TABLE `account_data` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `account_data` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `account_instance_times`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `account_instance_times` (
|
|
`accountId` int unsigned NOT NULL,
|
|
`instanceId` int unsigned NOT NULL DEFAULT '0',
|
|
`releaseTime` bigint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`accountId`,`instanceId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `account_instance_times` WRITE;
|
|
/*!40000 ALTER TABLE `account_instance_times` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `account_instance_times` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `account_tutorial`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `account_tutorial` (
|
|
`accountId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
|
|
`tut0` int unsigned NOT NULL DEFAULT '0',
|
|
`tut1` int unsigned NOT NULL DEFAULT '0',
|
|
`tut2` int unsigned NOT NULL DEFAULT '0',
|
|
`tut3` int unsigned NOT NULL DEFAULT '0',
|
|
`tut4` int unsigned NOT NULL DEFAULT '0',
|
|
`tut5` int unsigned NOT NULL DEFAULT '0',
|
|
`tut6` int unsigned NOT NULL DEFAULT '0',
|
|
`tut7` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`accountId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `account_tutorial` WRITE;
|
|
/*!40000 ALTER TABLE `account_tutorial` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `account_tutorial` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `addons`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `addons` (
|
|
`name` varchar(120) NOT NULL DEFAULT '',
|
|
`crc` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`name`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Addons';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `addons` WRITE;
|
|
/*!40000 ALTER TABLE `addons` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `addons` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `auctionhouse`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `auctionhouse` (
|
|
`id` int unsigned NOT NULL DEFAULT '0',
|
|
`auctioneerguid` int unsigned NOT NULL DEFAULT '0',
|
|
`itemguid` int unsigned NOT NULL DEFAULT '0',
|
|
`itemowner` int unsigned NOT NULL DEFAULT '0',
|
|
`buyoutprice` int unsigned NOT NULL DEFAULT '0',
|
|
`time` int unsigned NOT NULL DEFAULT '0',
|
|
`buyguid` int unsigned NOT NULL DEFAULT '0',
|
|
`lastbid` int unsigned NOT NULL DEFAULT '0',
|
|
`startbid` int unsigned NOT NULL DEFAULT '0',
|
|
`deposit` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `item_guid` (`itemguid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `auctionhouse` WRITE;
|
|
/*!40000 ALTER TABLE `auctionhouse` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `auctionhouse` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `banned_addons`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `banned_addons` (
|
|
`Id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`Name` varchar(255) NOT NULL,
|
|
`Version` varchar(255) NOT NULL DEFAULT '',
|
|
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`Id`),
|
|
UNIQUE KEY `idx_name_ver` (`Name`,`Version`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `banned_addons` WRITE;
|
|
/*!40000 ALTER TABLE `banned_addons` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `banned_addons` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `blackmarket_auctions`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `blackmarket_auctions` (
|
|
`auctionId` int unsigned NOT NULL DEFAULT '0',
|
|
`templateId` int unsigned NOT NULL DEFAULT '0',
|
|
`startTime` int unsigned NOT NULL DEFAULT '0',
|
|
`currentBidder` int unsigned NOT NULL DEFAULT '0',
|
|
`currentBid` bigint unsigned NOT NULL DEFAULT '0',
|
|
`minIncrement` bigint unsigned NOT NULL DEFAULT '0',
|
|
`numBids` int unsigned NOT NULL DEFAULT '0'
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `blackmarket_auctions` WRITE;
|
|
/*!40000 ALTER TABLE `blackmarket_auctions` DISABLE KEYS */;
|
|
INSERT INTO `blackmarket_auctions` VALUES (1,14,1671994656,0,100000000,5000000,0);
|
|
/*!40000 ALTER TABLE `blackmarket_auctions` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `bugreport`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `bugreport` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
|
|
`type` longtext NOT NULL,
|
|
`content` longtext NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Debug System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `bugreport` WRITE;
|
|
/*!40000 ALTER TABLE `bugreport` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `bugreport` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `calendar_events`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `calendar_events` (
|
|
`id` bigint unsigned NOT NULL DEFAULT '0',
|
|
`creator` int unsigned NOT NULL DEFAULT '0',
|
|
`title` varchar(255) NOT NULL DEFAULT '',
|
|
`description` varchar(255) NOT NULL DEFAULT '',
|
|
`type` tinyint unsigned NOT NULL DEFAULT '4',
|
|
`dungeon` int NOT NULL DEFAULT '-1',
|
|
`eventtime` int unsigned NOT NULL DEFAULT '0',
|
|
`flags` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `calendar_events` WRITE;
|
|
/*!40000 ALTER TABLE `calendar_events` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `calendar_events` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `calendar_invites`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `calendar_invites` (
|
|
`id` bigint unsigned NOT NULL DEFAULT '0',
|
|
`event` bigint unsigned NOT NULL DEFAULT '0',
|
|
`invitee` int unsigned NOT NULL DEFAULT '0',
|
|
`sender` int unsigned NOT NULL DEFAULT '0',
|
|
`status` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`statustime` int unsigned NOT NULL DEFAULT '0',
|
|
`mod_rank` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`text` varchar(255) NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `calendar_invites` WRITE;
|
|
/*!40000 ALTER TABLE `calendar_invites` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `calendar_invites` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `channels`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `channels` (
|
|
`name` varchar(128) NOT NULL,
|
|
`team` int unsigned NOT NULL,
|
|
`announce` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`ownership` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`password` varchar(32) DEFAULT NULL,
|
|
`bannedList` text,
|
|
`lastUsed` int unsigned NOT NULL,
|
|
PRIMARY KEY (`name`,`team`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Channel System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `channels` WRITE;
|
|
/*!40000 ALTER TABLE `channels` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `channels` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_account_data`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_account_data` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`type` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`time` int unsigned NOT NULL DEFAULT '0',
|
|
`data` blob NOT NULL,
|
|
PRIMARY KEY (`guid`,`type`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_account_data` WRITE;
|
|
/*!40000 ALTER TABLE `character_account_data` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_account_data` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_achievement`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_achievement` (
|
|
`guid` int unsigned NOT NULL,
|
|
`achievement` smallint unsigned NOT NULL,
|
|
`date` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`achievement`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_achievement` WRITE;
|
|
/*!40000 ALTER TABLE `character_achievement` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_achievement` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_achievement_progress`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_achievement_progress` (
|
|
`guid` int unsigned NOT NULL,
|
|
`criteria` smallint unsigned NOT NULL,
|
|
`counter` bigint unsigned NOT NULL,
|
|
`date` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`criteria`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_achievement_progress` WRITE;
|
|
/*!40000 ALTER TABLE `character_achievement_progress` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_achievement_progress` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_action`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_action` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`spec` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`button` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`action` int unsigned NOT NULL DEFAULT '0',
|
|
`type` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`spec`,`button`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_action` WRITE;
|
|
/*!40000 ALTER TABLE `character_action` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_action` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_arena_stats`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_arena_stats` (
|
|
`guid` int NOT NULL,
|
|
`slot` tinyint NOT NULL,
|
|
`matchMakerRating` smallint NOT NULL,
|
|
PRIMARY KEY (`guid`,`slot`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_arena_stats` WRITE;
|
|
/*!40000 ALTER TABLE `character_arena_stats` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_arena_stats` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_aura`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_aura` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`caster_guid` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Full Global Unique Identifier',
|
|
`item_guid` bigint unsigned NOT NULL DEFAULT '0',
|
|
`spell` mediumint unsigned NOT NULL DEFAULT '0',
|
|
`effect_mask` int unsigned NOT NULL DEFAULT '0',
|
|
`recalculate_mask` int unsigned DEFAULT '0',
|
|
`stackcount` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`amount0` int NOT NULL DEFAULT '0',
|
|
`amount1` int NOT NULL DEFAULT '0',
|
|
`amount2` int NOT NULL DEFAULT '0',
|
|
`base_amount0` int NOT NULL DEFAULT '0',
|
|
`base_amount1` int NOT NULL DEFAULT '0',
|
|
`base_amount2` int NOT NULL DEFAULT '0',
|
|
`maxduration` int NOT NULL DEFAULT '0',
|
|
`remaintime` int NOT NULL DEFAULT '0',
|
|
`remaincharges` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`caster_guid`,`item_guid`,`spell`,`effect_mask`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_aura` WRITE;
|
|
/*!40000 ALTER TABLE `character_aura` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_aura` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_banned`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_banned` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`bandate` int unsigned NOT NULL DEFAULT '0',
|
|
`unbandate` int unsigned NOT NULL DEFAULT '0',
|
|
`bannedby` varchar(50) NOT NULL,
|
|
`banreason` varchar(255) NOT NULL,
|
|
`active` tinyint unsigned NOT NULL DEFAULT '1',
|
|
PRIMARY KEY (`guid`,`bandate`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Ban List';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_banned` WRITE;
|
|
/*!40000 ALTER TABLE `character_banned` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_banned` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_battleground_data`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_battleground_data` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`instanceId` int unsigned NOT NULL COMMENT 'Instance Identifier',
|
|
`team` smallint unsigned NOT NULL,
|
|
`joinX` float NOT NULL DEFAULT '0',
|
|
`joinY` float NOT NULL DEFAULT '0',
|
|
`joinZ` float NOT NULL DEFAULT '0',
|
|
`joinO` float NOT NULL DEFAULT '0',
|
|
`joinMapId` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
|
`taxiStart` int unsigned NOT NULL DEFAULT '0',
|
|
`taxiEnd` int unsigned NOT NULL DEFAULT '0',
|
|
`mountSpell` mediumint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_battleground_data` WRITE;
|
|
/*!40000 ALTER TABLE `character_battleground_data` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_battleground_data` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_battleground_random`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_battleground_random` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_battleground_random` WRITE;
|
|
/*!40000 ALTER TABLE `character_battleground_random` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_battleground_random` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_cuf_profiles`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_cuf_profiles` (
|
|
`guid` int unsigned NOT NULL COMMENT 'Character Guid',
|
|
`id` tinyint unsigned NOT NULL COMMENT 'Profile Id (0-4)',
|
|
`name` varchar(12) NOT NULL COMMENT 'Profile Name',
|
|
`frameHeight` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Profile Frame Height',
|
|
`frameWidth` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Profile Frame Width',
|
|
`sortBy` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Frame Sort By',
|
|
`healthText` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Frame Health Text',
|
|
`boolOptions` int unsigned NOT NULL DEFAULT '0' COMMENT 'Many Configurable Bool Options',
|
|
`unk146` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Profile Unk Int8',
|
|
`unk147` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Profile Unk Int8',
|
|
`unk148` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Profile Unk Int8',
|
|
`unk150` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Profile Unk Int16',
|
|
`unk152` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Profile Unk Int16',
|
|
`unk154` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Profile Unk Int16',
|
|
PRIMARY KEY (`guid`,`id`),
|
|
KEY `index` (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_cuf_profiles` WRITE;
|
|
/*!40000 ALTER TABLE `character_cuf_profiles` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_cuf_profiles` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_currency`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_currency` (
|
|
`guid` int unsigned NOT NULL,
|
|
`currency` smallint unsigned NOT NULL,
|
|
`quantity` int unsigned NOT NULL,
|
|
`weekly_quantity` int unsigned NOT NULL,
|
|
`tracked_quantity` int unsigned NOT NULL,
|
|
`flags` int unsigned NOT NULL,
|
|
PRIMARY KEY (`guid`,`currency`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_currency` WRITE;
|
|
/*!40000 ALTER TABLE `character_currency` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_currency` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_declinedname`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_declinedname` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`genitive` varchar(15) NOT NULL DEFAULT '',
|
|
`dative` varchar(15) NOT NULL DEFAULT '',
|
|
`accusative` varchar(15) NOT NULL DEFAULT '',
|
|
`instrumental` varchar(15) NOT NULL DEFAULT '',
|
|
`prepositional` varchar(15) NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_declinedname` WRITE;
|
|
/*!40000 ALTER TABLE `character_declinedname` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_declinedname` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_equipmentsets`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_equipmentsets` (
|
|
`guid` int NOT NULL DEFAULT '0',
|
|
`setguid` bigint NOT NULL AUTO_INCREMENT,
|
|
`setindex` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`name` varchar(31) NOT NULL,
|
|
`iconname` varchar(100) NOT NULL,
|
|
`ignore_mask` int unsigned NOT NULL DEFAULT '0',
|
|
`item0` int unsigned NOT NULL DEFAULT '0',
|
|
`item1` int unsigned NOT NULL DEFAULT '0',
|
|
`item2` int unsigned NOT NULL DEFAULT '0',
|
|
`item3` int unsigned NOT NULL DEFAULT '0',
|
|
`item4` int unsigned NOT NULL DEFAULT '0',
|
|
`item5` int unsigned NOT NULL DEFAULT '0',
|
|
`item6` int unsigned NOT NULL DEFAULT '0',
|
|
`item7` int unsigned NOT NULL DEFAULT '0',
|
|
`item8` int unsigned NOT NULL DEFAULT '0',
|
|
`item9` int unsigned NOT NULL DEFAULT '0',
|
|
`item10` int unsigned NOT NULL DEFAULT '0',
|
|
`item11` int unsigned NOT NULL DEFAULT '0',
|
|
`item12` int unsigned NOT NULL DEFAULT '0',
|
|
`item13` int unsigned NOT NULL DEFAULT '0',
|
|
`item14` int unsigned NOT NULL DEFAULT '0',
|
|
`item15` int unsigned NOT NULL DEFAULT '0',
|
|
`item16` int unsigned NOT NULL DEFAULT '0',
|
|
`item17` int unsigned NOT NULL DEFAULT '0',
|
|
`item18` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`setguid`),
|
|
UNIQUE KEY `idx_set` (`guid`,`setguid`,`setindex`),
|
|
KEY `Idx_setindex` (`setindex`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_equipmentsets` WRITE;
|
|
/*!40000 ALTER TABLE `character_equipmentsets` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_equipmentsets` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_gifts`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_gifts` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`item_guid` int unsigned NOT NULL DEFAULT '0',
|
|
`entry` int unsigned NOT NULL DEFAULT '0',
|
|
`flags` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`item_guid`),
|
|
KEY `idx_guid` (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_gifts` WRITE;
|
|
/*!40000 ALTER TABLE `character_gifts` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_gifts` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_glyphs`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_glyphs` (
|
|
`guid` int unsigned NOT NULL,
|
|
`spec` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`glyph1` smallint unsigned DEFAULT '0',
|
|
`glyph2` smallint unsigned DEFAULT '0',
|
|
`glyph3` smallint unsigned DEFAULT '0',
|
|
`glyph4` smallint unsigned DEFAULT '0',
|
|
`glyph5` smallint unsigned DEFAULT '0',
|
|
`glyph6` smallint unsigned DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`spec`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_glyphs` WRITE;
|
|
/*!40000 ALTER TABLE `character_glyphs` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_glyphs` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_homebind`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_homebind` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`mapId` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
|
`zoneId` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Zone Identifier',
|
|
`posX` float NOT NULL DEFAULT '0',
|
|
`posY` float NOT NULL DEFAULT '0',
|
|
`posZ` float NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_homebind` WRITE;
|
|
/*!40000 ALTER TABLE `character_homebind` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_homebind` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_instance`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_instance` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`instance` int unsigned NOT NULL DEFAULT '0',
|
|
`permanent` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`instance`),
|
|
KEY `instance` (`instance`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_instance` WRITE;
|
|
/*!40000 ALTER TABLE `character_instance` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_instance` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_inventory`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_inventory` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`bag` int unsigned NOT NULL DEFAULT '0',
|
|
`slot` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`item` int unsigned NOT NULL DEFAULT '0' COMMENT 'Item Global Unique Identifier',
|
|
PRIMARY KEY (`item`),
|
|
UNIQUE KEY `guid` (`guid`,`bag`,`slot`),
|
|
KEY `idx_guid` (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_inventory` WRITE;
|
|
/*!40000 ALTER TABLE `character_inventory` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_inventory` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_pet`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_pet` (
|
|
`id` int unsigned NOT NULL DEFAULT '0',
|
|
`entry` int unsigned NOT NULL DEFAULT '0',
|
|
`owner` int unsigned NOT NULL DEFAULT '0',
|
|
`modelid` int unsigned DEFAULT '0',
|
|
`CreatedBySpell` mediumint unsigned NOT NULL DEFAULT '0',
|
|
`PetType` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`level` smallint unsigned NOT NULL DEFAULT '1',
|
|
`exp` int unsigned NOT NULL DEFAULT '0',
|
|
`Reactstate` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`name` varchar(21) NOT NULL DEFAULT 'Pet',
|
|
`renamed` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`active` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`slot` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`curhealth` int unsigned NOT NULL DEFAULT '1',
|
|
`curmana` int unsigned NOT NULL DEFAULT '0',
|
|
`savetime` int unsigned NOT NULL DEFAULT '0',
|
|
`abdata` text,
|
|
`PetSpecId` smallint DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `owner` (`owner`),
|
|
KEY `idx_slot` (`slot`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Pet System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_pet` WRITE;
|
|
/*!40000 ALTER TABLE `character_pet` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_pet` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_pet_declinedname`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_pet_declinedname` (
|
|
`id` int unsigned NOT NULL DEFAULT '0',
|
|
`owner` int unsigned NOT NULL DEFAULT '0',
|
|
`genitive` varchar(12) NOT NULL DEFAULT '',
|
|
`dative` varchar(12) NOT NULL DEFAULT '',
|
|
`accusative` varchar(12) NOT NULL DEFAULT '',
|
|
`instrumental` varchar(12) NOT NULL DEFAULT '',
|
|
`prepositional` varchar(12) NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`id`),
|
|
KEY `owner_key` (`owner`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_pet_declinedname` WRITE;
|
|
/*!40000 ALTER TABLE `character_pet_declinedname` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_pet_declinedname` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_queststatus`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_queststatus` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
|
`status` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`explored` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`timer` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`quest`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_queststatus` WRITE;
|
|
/*!40000 ALTER TABLE `character_queststatus` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_queststatus` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_queststatus_daily`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_queststatus_daily` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
|
`time` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`quest`),
|
|
KEY `idx_guid` (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_queststatus_daily` WRITE;
|
|
/*!40000 ALTER TABLE `character_queststatus_daily` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_queststatus_daily` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_queststatus_monthly`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_queststatus_monthly` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
|
PRIMARY KEY (`guid`,`quest`),
|
|
KEY `idx_guid` (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_queststatus_monthly` WRITE;
|
|
/*!40000 ALTER TABLE `character_queststatus_monthly` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_queststatus_monthly` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_queststatus_objective`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_queststatus_objective` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`objectiveId` int unsigned NOT NULL DEFAULT '0',
|
|
`amount` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`objectiveId`,`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_queststatus_objective` WRITE;
|
|
/*!40000 ALTER TABLE `character_queststatus_objective` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_queststatus_objective` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_queststatus_rewarded`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_queststatus_rewarded` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
|
`active` tinyint unsigned NOT NULL DEFAULT '1',
|
|
PRIMARY KEY (`guid`,`quest`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_queststatus_rewarded` WRITE;
|
|
/*!40000 ALTER TABLE `character_queststatus_rewarded` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_queststatus_rewarded` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_queststatus_seasonal`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_queststatus_seasonal` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
|
`event` int unsigned NOT NULL DEFAULT '0' COMMENT 'Event Identifier',
|
|
PRIMARY KEY (`guid`,`quest`),
|
|
KEY `idx_guid` (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_queststatus_seasonal` WRITE;
|
|
/*!40000 ALTER TABLE `character_queststatus_seasonal` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_queststatus_seasonal` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_queststatus_weekly`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_queststatus_weekly` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
|
PRIMARY KEY (`guid`,`quest`),
|
|
KEY `idx_guid` (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_queststatus_weekly` WRITE;
|
|
/*!40000 ALTER TABLE `character_queststatus_weekly` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_queststatus_weekly` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_reputation`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_reputation` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`faction` smallint unsigned NOT NULL DEFAULT '0',
|
|
`standing` int NOT NULL DEFAULT '0',
|
|
`flags` smallint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`faction`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_reputation` WRITE;
|
|
/*!40000 ALTER TABLE `character_reputation` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_reputation` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_research_digsites`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_research_digsites` (
|
|
`guid` int NOT NULL COMMENT 'Global Unique Identifier',
|
|
`digsiteId` int NOT NULL,
|
|
`currentFindGUID` int NOT NULL DEFAULT '0',
|
|
`remainingFindCount` tinyint NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`digsiteId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_research_digsites` WRITE;
|
|
/*!40000 ALTER TABLE `character_research_digsites` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_research_digsites` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_research_history`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_research_history` (
|
|
`guid` int NOT NULL COMMENT 'Global Unique Identifier',
|
|
`projectId` int NOT NULL,
|
|
`researchCount` int NOT NULL,
|
|
`firstResearchTimestamp` int NOT NULL,
|
|
PRIMARY KEY (`guid`,`projectId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_research_history` WRITE;
|
|
/*!40000 ALTER TABLE `character_research_history` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_research_history` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_research_projects`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_research_projects` (
|
|
`guid` int NOT NULL COMMENT 'Global Unique Identifier',
|
|
`projectId` int NOT NULL,
|
|
PRIMARY KEY (`guid`,`projectId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_research_projects` WRITE;
|
|
/*!40000 ALTER TABLE `character_research_projects` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_research_projects` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_skills`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_skills` (
|
|
`guid` int unsigned NOT NULL COMMENT 'Global Unique Identifier',
|
|
`skill` smallint unsigned NOT NULL,
|
|
`value` smallint unsigned NOT NULL,
|
|
`max` smallint unsigned NOT NULL,
|
|
PRIMARY KEY (`guid`,`skill`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_skills` WRITE;
|
|
/*!40000 ALTER TABLE `character_skills` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_skills` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_social`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_social` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
|
`friend` int unsigned NOT NULL DEFAULT '0' COMMENT 'Friend Global Unique Identifier',
|
|
`flags` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Friend Flags',
|
|
`note` varchar(48) NOT NULL DEFAULT '' COMMENT 'Friend Note',
|
|
PRIMARY KEY (`guid`,`friend`,`flags`),
|
|
KEY `friend` (`friend`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_social` WRITE;
|
|
/*!40000 ALTER TABLE `character_social` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_social` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_spell`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_spell` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`spell` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
|
`active` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`disabled` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`spell`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_spell` WRITE;
|
|
/*!40000 ALTER TABLE `character_spell` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_spell` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_spell_charges`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_spell_charges` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
|
|
`category` int unsigned NOT NULL DEFAULT '0' COMMENT 'Spell charge category',
|
|
`consumedCharges` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`resetTime` int unsigned NOT NULL DEFAULT '0',
|
|
`baseRegenTime` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`category`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_spell_charges` WRITE;
|
|
/*!40000 ALTER TABLE `character_spell_charges` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_spell_charges` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_spell_cooldown`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_spell_cooldown` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
|
|
`spell` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
|
`item` int unsigned NOT NULL DEFAULT '0' COMMENT 'Item Identifier',
|
|
`time` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`spell`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_spell_cooldown` WRITE;
|
|
/*!40000 ALTER TABLE `character_spell_cooldown` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_spell_cooldown` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_stats`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_stats` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
|
|
`maxhealth` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower1` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower2` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower3` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower4` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower5` int unsigned NOT NULL DEFAULT '0',
|
|
`strength` int unsigned NOT NULL DEFAULT '0',
|
|
`agility` int unsigned NOT NULL DEFAULT '0',
|
|
`stamina` int unsigned NOT NULL DEFAULT '0',
|
|
`intellect` int unsigned NOT NULL DEFAULT '0',
|
|
`spirit` int unsigned NOT NULL DEFAULT '0',
|
|
`armor` int unsigned NOT NULL DEFAULT '0',
|
|
`resHoly` int unsigned NOT NULL DEFAULT '0',
|
|
`resFire` int unsigned NOT NULL DEFAULT '0',
|
|
`resNature` int unsigned NOT NULL DEFAULT '0',
|
|
`resFrost` int unsigned NOT NULL DEFAULT '0',
|
|
`resShadow` int unsigned NOT NULL DEFAULT '0',
|
|
`resArcane` int unsigned NOT NULL DEFAULT '0',
|
|
`blockPct` float unsigned NOT NULL DEFAULT '0',
|
|
`dodgePct` float unsigned NOT NULL DEFAULT '0',
|
|
`parryPct` float unsigned NOT NULL DEFAULT '0',
|
|
`critPct` float unsigned NOT NULL DEFAULT '0',
|
|
`rangedCritPct` float unsigned NOT NULL DEFAULT '0',
|
|
`offhandCritPct` float unsigned NOT NULL DEFAULT '0',
|
|
`spellCritPct` float unsigned NOT NULL DEFAULT '0',
|
|
`attackPower` int unsigned NOT NULL DEFAULT '0',
|
|
`rangedAttackPower` int unsigned NOT NULL DEFAULT '0',
|
|
`spellPower` int unsigned NOT NULL DEFAULT '0',
|
|
`resilience` int unsigned NOT NULL DEFAULT '0',
|
|
`mastery` int unsigned NOT NULL DEFAULT '0',
|
|
`pvpDamage` int unsigned NOT NULL DEFAULT '0',
|
|
`pvpHealing` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_stats` WRITE;
|
|
/*!40000 ALTER TABLE `character_stats` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_stats` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_talent`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_talent` (
|
|
`guid` int unsigned NOT NULL,
|
|
`spell` mediumint unsigned NOT NULL,
|
|
`spec` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`spell`,`spec`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_talent` WRITE;
|
|
/*!40000 ALTER TABLE `character_talent` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_talent` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `character_void_storage`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `character_void_storage` (
|
|
`itemId` bigint unsigned NOT NULL,
|
|
`playerGuid` int unsigned NOT NULL,
|
|
`itemEntry` mediumint unsigned NOT NULL,
|
|
`slot` tinyint unsigned NOT NULL,
|
|
`creatorGuid` int unsigned NOT NULL DEFAULT '0',
|
|
`randomProperty` int unsigned NOT NULL DEFAULT '0',
|
|
`suffixFactor` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`itemId`),
|
|
UNIQUE KEY `idx_player_slot` (`playerGuid`,`slot`),
|
|
KEY `idx_player` (`playerGuid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `character_void_storage` WRITE;
|
|
/*!40000 ALTER TABLE `character_void_storage` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `character_void_storage` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `characters`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `characters` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`realm` int unsigned NOT NULL DEFAULT '0' COMMENT 'Realm Identifier',
|
|
`account` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
|
|
`name` varchar(12) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|
`slot` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`race` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`class` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`gender` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`level` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`xp` int unsigned NOT NULL DEFAULT '0',
|
|
`money` bigint unsigned NOT NULL DEFAULT '0',
|
|
`playerBytes` int unsigned NOT NULL DEFAULT '0',
|
|
`playerBytes2` int unsigned NOT NULL DEFAULT '0',
|
|
`playerFlags` int unsigned NOT NULL DEFAULT '0',
|
|
`position_x` float NOT NULL DEFAULT '0',
|
|
`position_y` float NOT NULL DEFAULT '0',
|
|
`position_z` float NOT NULL DEFAULT '0',
|
|
`map` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
|
`instance_id` int unsigned NOT NULL DEFAULT '0',
|
|
`dungeonDifficulty` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`raidDifficulty` tinyint unsigned NOT NULL DEFAULT '14',
|
|
`orientation` float NOT NULL DEFAULT '0',
|
|
`taximask` text NOT NULL,
|
|
`online` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`cinematic` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`totaltime` int unsigned NOT NULL DEFAULT '0',
|
|
`leveltime` int unsigned NOT NULL DEFAULT '0',
|
|
`logout_time` int unsigned NOT NULL DEFAULT '0',
|
|
`is_logout_resting` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`rest_bonus` float NOT NULL DEFAULT '0',
|
|
`resettalents_cost` int unsigned NOT NULL DEFAULT '0',
|
|
`resettalents_time` int unsigned NOT NULL DEFAULT '0',
|
|
`talentTree` varchar(10) NOT NULL DEFAULT '0 0',
|
|
`trans_x` float NOT NULL DEFAULT '0',
|
|
`trans_y` float NOT NULL DEFAULT '0',
|
|
`trans_z` float NOT NULL DEFAULT '0',
|
|
`trans_o` float NOT NULL DEFAULT '0',
|
|
`transguid` mediumint unsigned NOT NULL DEFAULT '0',
|
|
`extra_flags` smallint unsigned NOT NULL DEFAULT '0',
|
|
`stable_slots` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`at_login` smallint unsigned NOT NULL DEFAULT '0',
|
|
`zone` smallint unsigned NOT NULL DEFAULT '0',
|
|
`death_expire_time` int unsigned NOT NULL DEFAULT '0',
|
|
`taxi_path` text,
|
|
`totalKills` int unsigned NOT NULL DEFAULT '0',
|
|
`todayKills` smallint unsigned NOT NULL DEFAULT '0',
|
|
`yesterdayKills` smallint unsigned NOT NULL DEFAULT '0',
|
|
`chosenTitle` int unsigned NOT NULL DEFAULT '0',
|
|
`watchedFaction` int unsigned NOT NULL DEFAULT '0',
|
|
`lfgbonusfaction` int unsigned NOT NULL DEFAULT '0',
|
|
`drunk` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`health` int unsigned NOT NULL DEFAULT '0',
|
|
`power1` int unsigned NOT NULL DEFAULT '0',
|
|
`power2` int unsigned NOT NULL DEFAULT '0',
|
|
`power3` int unsigned NOT NULL DEFAULT '0',
|
|
`power4` int unsigned NOT NULL DEFAULT '0',
|
|
`power5` int unsigned NOT NULL DEFAULT '0',
|
|
`latency` mediumint unsigned NOT NULL DEFAULT '0',
|
|
`speccount` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`activespec` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`exploredZones` longtext,
|
|
`equipmentCache` longtext,
|
|
`knownTitles` longtext,
|
|
`actionBars` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`grantableLevels` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`deleteInfos_Account` int unsigned DEFAULT NULL,
|
|
`deleteInfos_Name` varchar(12) DEFAULT NULL,
|
|
`deleteDate` int unsigned DEFAULT NULL,
|
|
PRIMARY KEY (`guid`),
|
|
KEY `idx_account` (`account`),
|
|
KEY `idx_online` (`online`),
|
|
KEY `idx_name` (`name`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `characters` WRITE;
|
|
/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `characters` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `corpse`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `corpse` (
|
|
`corpseGuid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
|
`posX` float NOT NULL DEFAULT '0',
|
|
`posY` float NOT NULL DEFAULT '0',
|
|
`posZ` float NOT NULL DEFAULT '0',
|
|
`orientation` float NOT NULL DEFAULT '0',
|
|
`mapId` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
|
`phaseMask` int unsigned NOT NULL DEFAULT '1',
|
|
`displayId` int unsigned NOT NULL DEFAULT '0',
|
|
`itemCache` text NOT NULL,
|
|
`bytes1` int unsigned NOT NULL DEFAULT '0',
|
|
`bytes2` int unsigned NOT NULL DEFAULT '0',
|
|
`flags` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`dynFlags` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`time` int unsigned NOT NULL DEFAULT '0',
|
|
`corpseType` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`instanceId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
|
|
PRIMARY KEY (`corpseGuid`),
|
|
KEY `idx_type` (`corpseType`),
|
|
KEY `idx_instance` (`instanceId`),
|
|
KEY `idx_player` (`guid`),
|
|
KEY `idx_time` (`time`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Death System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `corpse` WRITE;
|
|
/*!40000 ALTER TABLE `corpse` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `corpse` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `creature_respawn`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `creature_respawn` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`respawnTime` int unsigned NOT NULL DEFAULT '0',
|
|
`mapId` smallint unsigned NOT NULL DEFAULT '0',
|
|
`instanceId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
|
|
PRIMARY KEY (`guid`,`instanceId`),
|
|
KEY `idx_instance` (`instanceId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Grid Loading System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `creature_respawn` WRITE;
|
|
/*!40000 ALTER TABLE `creature_respawn` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `creature_respawn` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `db_update`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `db_update` (
|
|
`date` date NOT NULL,
|
|
`time` time NOT NULL,
|
|
`filename` varchar(255) NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `db_update` WRITE;
|
|
/*!40000 ALTER TABLE `db_update` DISABLE KEYS */;
|
|
INSERT INTO `db_update` VALUES ('2026-08-15','08:33:52','2026-06-27_characters_00.sql'),('2026-08-15','08:33:52','2026-06-27_characters_01.sql'),('2026-08-15','08:33:52','2026_08_03_characters_00.sql');
|
|
/*!40000 ALTER TABLE `db_update` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `game_event_condition_save`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `game_event_condition_save` (
|
|
`eventEntry` tinyint unsigned NOT NULL,
|
|
`condition_id` int unsigned NOT NULL DEFAULT '0',
|
|
`done` float DEFAULT '0',
|
|
PRIMARY KEY (`eventEntry`,`condition_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `game_event_condition_save` WRITE;
|
|
/*!40000 ALTER TABLE `game_event_condition_save` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `game_event_condition_save` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `game_event_save`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `game_event_save` (
|
|
`eventEntry` tinyint unsigned NOT NULL,
|
|
`state` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`next_start` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`eventEntry`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `game_event_save` WRITE;
|
|
/*!40000 ALTER TABLE `game_event_save` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `game_event_save` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `gameobject_respawn`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `gameobject_respawn` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`respawnTime` int unsigned NOT NULL DEFAULT '0',
|
|
`mapId` smallint unsigned NOT NULL DEFAULT '0',
|
|
`instanceId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
|
|
PRIMARY KEY (`guid`,`instanceId`),
|
|
KEY `idx_instance` (`instanceId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Grid Loading System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `gameobject_respawn` WRITE;
|
|
/*!40000 ALTER TABLE `gameobject_respawn` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `gameobject_respawn` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `gm_subsurveys`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `gm_subsurveys` (
|
|
`surveyId` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`subsurveyId` int unsigned NOT NULL DEFAULT '0',
|
|
`rank` int unsigned NOT NULL DEFAULT '0',
|
|
`comment` text NOT NULL,
|
|
PRIMARY KEY (`surveyId`,`subsurveyId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `gm_subsurveys` WRITE;
|
|
/*!40000 ALTER TABLE `gm_subsurveys` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `gm_subsurveys` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `gm_surveys`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `gm_surveys` (
|
|
`surveyId` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`mainSurvey` int unsigned NOT NULL DEFAULT '0',
|
|
`overallComment` longtext NOT NULL,
|
|
`createTime` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`surveyId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `gm_surveys` WRITE;
|
|
/*!40000 ALTER TABLE `gm_surveys` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `gm_surveys` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `gm_tickets`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `gm_tickets` (
|
|
`ticketId` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier of ticket creator',
|
|
`name` varchar(12) NOT NULL COMMENT 'Name of ticket creator',
|
|
`message` text NOT NULL,
|
|
`createTime` int unsigned NOT NULL DEFAULT '0',
|
|
`mapId` smallint unsigned NOT NULL DEFAULT '0',
|
|
`posX` float NOT NULL DEFAULT '0',
|
|
`posY` float NOT NULL DEFAULT '0',
|
|
`posZ` float NOT NULL DEFAULT '0',
|
|
`lastModifiedTime` int unsigned NOT NULL DEFAULT '0',
|
|
`closedBy` int NOT NULL DEFAULT '0',
|
|
`assignedTo` int unsigned NOT NULL DEFAULT '0' COMMENT 'GUID of admin to whom ticket is assigned',
|
|
`comment` text NOT NULL,
|
|
`response` text NOT NULL,
|
|
`completed` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`escalated` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`viewed` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`haveTicket` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`ticketId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `gm_tickets` WRITE;
|
|
/*!40000 ALTER TABLE `gm_tickets` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `gm_tickets` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild` (
|
|
`guildid` int unsigned NOT NULL DEFAULT '0',
|
|
`name` varchar(24) NOT NULL DEFAULT '',
|
|
`leaderguid` int unsigned NOT NULL DEFAULT '0',
|
|
`EmblemStyle` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`EmblemColor` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`BorderStyle` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`BorderColor` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`BackgroundColor` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`info` text NOT NULL,
|
|
`motd` varchar(128) NOT NULL DEFAULT '',
|
|
`createdate` int unsigned NOT NULL DEFAULT '0',
|
|
`BankMoney` bigint unsigned NOT NULL DEFAULT '0',
|
|
`level` int unsigned DEFAULT '1',
|
|
`experience` bigint unsigned DEFAULT '0',
|
|
`todayExperience` bigint unsigned DEFAULT '0',
|
|
PRIMARY KEY (`guildid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Guild System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild` WRITE;
|
|
/*!40000 ALTER TABLE `guild` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_achievement`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_achievement` (
|
|
`guildId` int unsigned NOT NULL,
|
|
`achievement` smallint unsigned NOT NULL,
|
|
`date` int unsigned NOT NULL DEFAULT '0',
|
|
`guids` text NOT NULL,
|
|
PRIMARY KEY (`guildId`,`achievement`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_achievement` WRITE;
|
|
/*!40000 ALTER TABLE `guild_achievement` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_achievement` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_achievement_progress`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_achievement_progress` (
|
|
`guildId` int unsigned NOT NULL,
|
|
`criteria` smallint unsigned NOT NULL,
|
|
`counter` bigint unsigned NOT NULL,
|
|
`date` int unsigned NOT NULL DEFAULT '0',
|
|
`completedGuid` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guildId`,`criteria`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_achievement_progress` WRITE;
|
|
/*!40000 ALTER TABLE `guild_achievement_progress` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_achievement_progress` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_bank_eventlog`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_bank_eventlog` (
|
|
`guildid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Guild Identificator',
|
|
`LogGuid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Log record identificator - auxiliary column',
|
|
`TabId` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Guild bank TabId',
|
|
`EventType` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Event type',
|
|
`PlayerGuid` int unsigned NOT NULL DEFAULT '0',
|
|
`ItemOrMoney` int unsigned NOT NULL DEFAULT '0',
|
|
`ItemStackCount` smallint unsigned NOT NULL DEFAULT '0',
|
|
`DestTabId` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Destination Tab Id',
|
|
`TimeStamp` int unsigned NOT NULL DEFAULT '0' COMMENT 'Event UNIX time',
|
|
PRIMARY KEY (`guildid`,`LogGuid`,`TabId`),
|
|
KEY `guildid_key` (`guildid`),
|
|
KEY `Idx_PlayerGuid` (`PlayerGuid`),
|
|
KEY `Idx_LogGuid` (`LogGuid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_bank_eventlog` WRITE;
|
|
/*!40000 ALTER TABLE `guild_bank_eventlog` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_bank_eventlog` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_bank_item`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_bank_item` (
|
|
`guildid` int unsigned NOT NULL DEFAULT '0',
|
|
`TabId` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`SlotId` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`item_guid` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guildid`,`TabId`,`SlotId`),
|
|
KEY `guildid_key` (`guildid`),
|
|
KEY `Idx_item_guid` (`item_guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_bank_item` WRITE;
|
|
/*!40000 ALTER TABLE `guild_bank_item` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_bank_item` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_bank_right`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_bank_right` (
|
|
`guildid` int unsigned NOT NULL DEFAULT '0',
|
|
`TabId` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`rid` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`gbright` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`SlotPerDay` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guildid`,`TabId`,`rid`),
|
|
KEY `guildid_key` (`guildid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_bank_right` WRITE;
|
|
/*!40000 ALTER TABLE `guild_bank_right` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_bank_right` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_bank_tab`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_bank_tab` (
|
|
`guildid` int unsigned NOT NULL DEFAULT '0',
|
|
`TabId` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`TabName` varchar(16) NOT NULL DEFAULT '',
|
|
`TabIcon` varchar(100) NOT NULL DEFAULT '',
|
|
`TabText` varchar(500) DEFAULT NULL,
|
|
PRIMARY KEY (`guildid`,`TabId`),
|
|
KEY `guildid_key` (`guildid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_bank_tab` WRITE;
|
|
/*!40000 ALTER TABLE `guild_bank_tab` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_bank_tab` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_eventlog`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_eventlog` (
|
|
`guildid` int unsigned NOT NULL COMMENT 'Guild Identificator',
|
|
`LogGuid` int unsigned NOT NULL COMMENT 'Log record identificator - auxiliary column',
|
|
`EventType` tinyint unsigned NOT NULL COMMENT 'Event type',
|
|
`PlayerGuid1` int unsigned NOT NULL COMMENT 'Player 1',
|
|
`PlayerGuid2` int unsigned NOT NULL COMMENT 'Player 2',
|
|
`NewRank` tinyint unsigned NOT NULL COMMENT 'New rank(in case promotion/demotion)',
|
|
`TimeStamp` int unsigned NOT NULL COMMENT 'Event UNIX time',
|
|
PRIMARY KEY (`guildid`,`LogGuid`),
|
|
KEY `Idx_PlayerGuid1` (`PlayerGuid1`),
|
|
KEY `Idx_PlayerGuid2` (`PlayerGuid2`),
|
|
KEY `Idx_LogGuid` (`LogGuid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Guild Eventlog';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_eventlog` WRITE;
|
|
/*!40000 ALTER TABLE `guild_eventlog` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_eventlog` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_finder_applicant`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_finder_applicant` (
|
|
`guildId` int unsigned DEFAULT NULL,
|
|
`playerGuid` int unsigned DEFAULT NULL,
|
|
`availability` tinyint unsigned DEFAULT '0',
|
|
`classRole` tinyint unsigned DEFAULT '0',
|
|
`interests` tinyint unsigned DEFAULT '0',
|
|
`comment` varchar(255) DEFAULT NULL,
|
|
`submitTime` int unsigned DEFAULT NULL,
|
|
UNIQUE KEY `guildId` (`guildId`,`playerGuid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_finder_applicant` WRITE;
|
|
/*!40000 ALTER TABLE `guild_finder_applicant` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_finder_applicant` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_finder_guild_settings`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_finder_guild_settings` (
|
|
`guildId` int unsigned NOT NULL,
|
|
`availability` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`classRoles` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`interests` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`level` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`listed` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`comment` varchar(255) DEFAULT NULL,
|
|
PRIMARY KEY (`guildId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_finder_guild_settings` WRITE;
|
|
/*!40000 ALTER TABLE `guild_finder_guild_settings` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_finder_guild_settings` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_member`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_member` (
|
|
`guildid` int unsigned NOT NULL COMMENT 'Guild Identificator',
|
|
`guid` int unsigned NOT NULL,
|
|
`member_rank` tinyint unsigned NOT NULL,
|
|
`pnote` varchar(31) NOT NULL DEFAULT '',
|
|
`offnote` varchar(31) NOT NULL DEFAULT '',
|
|
UNIQUE KEY `guid_key` (`guid`),
|
|
KEY `guildid_key` (`guildid`),
|
|
KEY `guildid_rank_key` (`guildid`,`member_rank`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Guild System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_member` WRITE;
|
|
/*!40000 ALTER TABLE `guild_member` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_member` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_member_withdraw`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_member_withdraw` (
|
|
`guid` int unsigned NOT NULL,
|
|
`tab0` int unsigned NOT NULL DEFAULT '0',
|
|
`tab1` int unsigned NOT NULL DEFAULT '0',
|
|
`tab2` int unsigned NOT NULL DEFAULT '0',
|
|
`tab3` int unsigned NOT NULL DEFAULT '0',
|
|
`tab4` int unsigned NOT NULL DEFAULT '0',
|
|
`tab5` int unsigned NOT NULL DEFAULT '0',
|
|
`tab6` int unsigned NOT NULL DEFAULT '0',
|
|
`tab7` int unsigned NOT NULL DEFAULT '0',
|
|
`money` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Guild Member Daily Withdraws';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_member_withdraw` WRITE;
|
|
/*!40000 ALTER TABLE `guild_member_withdraw` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_member_withdraw` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_newslog`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_newslog` (
|
|
`guildid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Guild Identificator',
|
|
`LogGuid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Log record identificator - auxiliary column',
|
|
`EventType` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Event type',
|
|
`PlayerGuid` int unsigned NOT NULL DEFAULT '0',
|
|
`Flags` int unsigned NOT NULL DEFAULT '0',
|
|
`Value` int unsigned NOT NULL DEFAULT '0',
|
|
`TimeStamp` int unsigned NOT NULL DEFAULT '0' COMMENT 'Event UNIX time',
|
|
PRIMARY KEY (`guildid`,`LogGuid`),
|
|
KEY `guildid_key` (`guildid`),
|
|
KEY `Idx_PlayerGuid` (`PlayerGuid`),
|
|
KEY `Idx_LogGuid` (`LogGuid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_newslog` WRITE;
|
|
/*!40000 ALTER TABLE `guild_newslog` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_newslog` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `guild_rank`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `guild_rank` (
|
|
`guildid` int unsigned NOT NULL DEFAULT '0',
|
|
`rid` tinyint unsigned NOT NULL,
|
|
`rname` varchar(20) NOT NULL DEFAULT '',
|
|
`rights` mediumint unsigned NOT NULL DEFAULT '0',
|
|
`BankMoneyPerDay` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guildid`,`rid`),
|
|
KEY `Idx_rid` (`rid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Guild System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `guild_rank` WRITE;
|
|
/*!40000 ALTER TABLE `guild_rank` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `guild_rank` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `instance`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `instance` (
|
|
`id` int unsigned NOT NULL DEFAULT '0',
|
|
`map` smallint unsigned NOT NULL DEFAULT '0',
|
|
`resettime` int unsigned NOT NULL DEFAULT '0',
|
|
`difficulty` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`completedEncounters` int unsigned NOT NULL DEFAULT '0',
|
|
`data` tinytext NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `map` (`map`),
|
|
KEY `resettime` (`resettime`),
|
|
KEY `difficulty` (`difficulty`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `instance` WRITE;
|
|
/*!40000 ALTER TABLE `instance` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `instance` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `instance_reset`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `instance_reset` (
|
|
`mapid` smallint unsigned NOT NULL DEFAULT '0',
|
|
`difficulty` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`resettime` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`mapid`,`difficulty`),
|
|
KEY `difficulty` (`difficulty`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `instance_reset` WRITE;
|
|
/*!40000 ALTER TABLE `instance_reset` DISABLE KEYS */;
|
|
INSERT INTO `instance_reset` VALUES (33,2,1786852800),(36,2,1786852800),(249,3,1787371200),(249,4,1787371200),(269,2,1786852800),(409,9,1787371200),(469,9,1787371200),(509,3,1786939200),(531,9,1787371200),(532,3,1787371200),(533,3,1787371200),(533,4,1787371200),(534,4,1787371200),(540,2,1786852800),(542,2,1786852800),(543,2,1786852800),(544,4,1787371200),(545,2,1786852800),(546,2,1786852800),(547,2,1786852800),(548,4,1787371200),(550,4,1787371200),(552,2,1786852800),(553,2,1786852800),(554,2,1786852800),(555,2,1786852800),(556,2,1786852800),(557,2,1786852800),(558,2,1786852800),(560,2,1786852800),(564,4,1787371200),(565,4,1787371200),(568,2,1786852800),(574,2,1786852800),(575,2,1786852800),(576,2,1786852800),(578,2,1786852800),(580,4,1787371200),(585,2,1786852800),(595,2,1786852800),(598,2,1786852800),(599,2,1786852800),(600,2,1786852800),(601,2,1786852800),(602,2,1786852800),(603,3,1787371200),(603,4,1787371200),(604,2,1786852800),(608,2,1786852800),(615,3,1787371200),(615,4,1787371200),(616,3,1787371200),(616,4,1787371200),(619,2,1786852800),(624,3,1787371200),(624,4,1787371200),(631,3,1787371200),(631,4,1787371200),(631,5,1787371200),(631,6,1787371200),(632,2,1786852800),(643,2,1786852800),(644,2,1786852800),(645,2,1786852800),(649,3,1787371200),(649,4,1787371200),(649,5,1787371200),(649,6,1787371200),(650,2,1786852800),(657,2,1786852800),(658,2,1786852800),(668,2,1786852800),(669,3,1787371200),(669,4,1787371200),(669,5,1787371200),(669,6,1787371200),(670,2,1786852800),(671,3,1787371200),(671,4,1787371200),(671,5,1787371200),(671,6,1787371200),(720,3,1787371200),(720,4,1787371200),(720,5,1787371200),(720,6,1787371200),(724,3,1787371200),(724,4,1787371200),(724,5,1787371200),(724,6,1787371200),(725,2,1786852800),(754,3,1787371200),(754,4,1787371200),(754,5,1787371200),(754,6,1787371200),(755,2,1786852800),(757,3,1787371200),(757,4,1787371200),(757,5,1787371200),(757,6,1787371200),(859,2,1786852800),(938,2,1786852800),(939,2,1786852800),(940,2,1786852800),(959,2,1786852800),(960,2,1786852800),(961,2,1786852800),(962,2,1786852800),(967,3,1787371200),(967,4,1787371200),(967,5,1787371200),(967,6,1787371200),(994,2,1786852800),(996,3,1787371200),(996,4,1787371200),(996,5,1787371200),(996,6,1787371200),(1001,2,1786852800),(1004,2,1786852800),(1007,2,1786852800),(1008,3,1787371200),(1008,4,1787371200),(1008,5,1787371200),(1008,6,1787371200),(1009,3,1787371200),(1009,4,1787371200),(1009,5,1787371200),(1009,6,1787371200),(1011,2,1786852800),(1098,3,1787371200),(1098,4,1787371200),(1098,5,1787371200),(1098,6,1787371200),(1136,3,1787371200),(1136,4,1787371200),(1136,5,1787371200),(1136,6,1787371200);
|
|
/*!40000 ALTER TABLE `instance_reset` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `item_instance`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `item_instance` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`itemEntry` mediumint unsigned NOT NULL DEFAULT '0',
|
|
`owner_guid` int unsigned NOT NULL DEFAULT '0',
|
|
`creatorGuid` int unsigned NOT NULL DEFAULT '0',
|
|
`giftCreatorGuid` int unsigned NOT NULL DEFAULT '0',
|
|
`count` int unsigned NOT NULL DEFAULT '1',
|
|
`duration` int NOT NULL DEFAULT '0',
|
|
`charges` tinytext,
|
|
`flags` mediumint unsigned NOT NULL DEFAULT '0',
|
|
`enchantments` text NOT NULL,
|
|
`randomPropertyId` smallint NOT NULL DEFAULT '0',
|
|
`reforgeID` int NOT NULL DEFAULT '0',
|
|
`durability` smallint unsigned NOT NULL DEFAULT '0',
|
|
`playedTime` int unsigned NOT NULL DEFAULT '0',
|
|
`text` text,
|
|
PRIMARY KEY (`guid`),
|
|
KEY `idx_owner_guid` (`owner_guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Item System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `item_instance` WRITE;
|
|
/*!40000 ALTER TABLE `item_instance` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `item_instance` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `item_instance_transmog`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `item_instance_transmog` (
|
|
`itemGuid` bigint unsigned NOT NULL,
|
|
`transmogrifyId` int NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`itemGuid`) USING BTREE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `item_instance_transmog` WRITE;
|
|
/*!40000 ALTER TABLE `item_instance_transmog` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `item_instance_transmog` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `item_loot_items`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `item_loot_items` (
|
|
`container_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'guid of container (item_instance.guid)',
|
|
`item_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'loot item entry (item_instance.itemEntry)',
|
|
`item_count` int NOT NULL DEFAULT '0' COMMENT 'stack size',
|
|
`follow_rules` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'follow loot rules',
|
|
`ffa` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'free-for-all',
|
|
`blocked` tinyint(1) NOT NULL DEFAULT '0',
|
|
`counted` tinyint(1) NOT NULL DEFAULT '0',
|
|
`under_threshold` tinyint(1) NOT NULL DEFAULT '0',
|
|
`needs_quest` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'quest drop',
|
|
`rnd_prop` int NOT NULL DEFAULT '0' COMMENT 'random enchantment added when originally rolled',
|
|
`rnd_suffix` int NOT NULL DEFAULT '0' COMMENT 'random suffix added when originally rolled'
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `item_loot_items` WRITE;
|
|
/*!40000 ALTER TABLE `item_loot_items` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `item_loot_items` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `item_loot_money`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `item_loot_money` (
|
|
`container_id` int NOT NULL DEFAULT '0' COMMENT 'guid of container (item_instance.guid)',
|
|
`money` int NOT NULL DEFAULT '0' COMMENT 'money loot (in copper)'
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `item_loot_money` WRITE;
|
|
/*!40000 ALTER TABLE `item_loot_money` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `item_loot_money` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `item_refund_instance`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `item_refund_instance` (
|
|
`item_guid` int unsigned NOT NULL COMMENT 'Item GUID',
|
|
`player_guid` int unsigned NOT NULL COMMENT 'Player GUID',
|
|
`paidMoney` int unsigned NOT NULL DEFAULT '0',
|
|
`paidExtendedCost` smallint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`item_guid`,`player_guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Item Refund System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `item_refund_instance` WRITE;
|
|
/*!40000 ALTER TABLE `item_refund_instance` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `item_refund_instance` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `item_soulbound_trade_data`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `item_soulbound_trade_data` (
|
|
`itemGuid` int unsigned NOT NULL COMMENT 'Item GUID',
|
|
`allowedPlayers` text NOT NULL COMMENT 'Space separated GUID list of players who can receive this item in trade',
|
|
PRIMARY KEY (`itemGuid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Item Refund System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `item_soulbound_trade_data` WRITE;
|
|
/*!40000 ALTER TABLE `item_soulbound_trade_data` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `item_soulbound_trade_data` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `lag_reports`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `lag_reports` (
|
|
`reportId` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`lagType` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`mapId` smallint unsigned NOT NULL DEFAULT '0',
|
|
`posX` float NOT NULL DEFAULT '0',
|
|
`posY` float NOT NULL DEFAULT '0',
|
|
`posZ` float NOT NULL DEFAULT '0',
|
|
`latency` int unsigned NOT NULL DEFAULT '0',
|
|
`createTime` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`reportId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `lag_reports` WRITE;
|
|
/*!40000 ALTER TABLE `lag_reports` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `lag_reports` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `lfg_data`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `lfg_data` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`dungeon` int unsigned NOT NULL DEFAULT '0',
|
|
`state` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='LFG Data';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `lfg_data` WRITE;
|
|
/*!40000 ALTER TABLE `lfg_data` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `lfg_data` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `mail`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `mail` (
|
|
`id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
|
|
`messageType` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`stationery` tinyint NOT NULL DEFAULT '41',
|
|
`mailTemplateId` smallint unsigned NOT NULL DEFAULT '0',
|
|
`sender` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
|
`receiver` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
|
`subject` longtext,
|
|
`body` longtext,
|
|
`has_items` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`expire_time` int unsigned NOT NULL DEFAULT '0',
|
|
`deliver_time` int unsigned NOT NULL DEFAULT '0',
|
|
`money` bigint unsigned NOT NULL DEFAULT '0',
|
|
`cod` bigint unsigned NOT NULL DEFAULT '0',
|
|
`checked` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`),
|
|
KEY `idx_receiver` (`receiver`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Mail System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `mail` WRITE;
|
|
/*!40000 ALTER TABLE `mail` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `mail` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `mail_items`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `mail_items` (
|
|
`mail_id` int unsigned NOT NULL DEFAULT '0',
|
|
`item_guid` int unsigned NOT NULL DEFAULT '0',
|
|
`receiver` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
|
PRIMARY KEY (`item_guid`),
|
|
KEY `idx_receiver` (`receiver`),
|
|
KEY `idx_mail_id` (`mail_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 ROW_FORMAT=DYNAMIC;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `mail_items` WRITE;
|
|
/*!40000 ALTER TABLE `mail_items` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `mail_items` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `parties`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `parties` (
|
|
`guid` int unsigned NOT NULL,
|
|
`leaderGuid` int unsigned NOT NULL,
|
|
`lootMethod` tinyint unsigned NOT NULL,
|
|
`looterGuid` int unsigned NOT NULL,
|
|
`lootThreshold` tinyint unsigned NOT NULL,
|
|
`icon1` int unsigned NOT NULL,
|
|
`icon2` int unsigned NOT NULL,
|
|
`icon3` int unsigned NOT NULL,
|
|
`icon4` int unsigned NOT NULL,
|
|
`icon5` int unsigned NOT NULL,
|
|
`icon6` int unsigned NOT NULL,
|
|
`icon7` int unsigned NOT NULL,
|
|
`icon8` int unsigned NOT NULL,
|
|
`partyType` tinyint unsigned NOT NULL,
|
|
`difficulty` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`raidDifficulty` tinyint unsigned NOT NULL DEFAULT '14',
|
|
PRIMARY KEY (`guid`),
|
|
KEY `leaderGuid` (`leaderGuid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='parties';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `parties` WRITE;
|
|
/*!40000 ALTER TABLE `parties` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `parties` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `party_instance`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `party_instance` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`instance` int unsigned NOT NULL DEFAULT '0',
|
|
`permanent` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`instance`),
|
|
KEY `instance` (`instance`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `party_instance` WRITE;
|
|
/*!40000 ALTER TABLE `party_instance` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `party_instance` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `party_member`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `party_member` (
|
|
`guid` int unsigned NOT NULL,
|
|
`memberGuid` int unsigned NOT NULL,
|
|
`memberFlags` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`subparty` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`roles` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`memberGuid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='partys';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `party_member` WRITE;
|
|
/*!40000 ALTER TABLE `party_member` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `party_member` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `pet_aura`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `pet_aura` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`caster_guid` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Full Global Unique Identifier',
|
|
`spell` mediumint unsigned NOT NULL DEFAULT '0',
|
|
`effect_mask` int unsigned NOT NULL DEFAULT '0',
|
|
`recalculate_mask` int unsigned DEFAULT '0',
|
|
`stackcount` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`amount0` mediumint NOT NULL,
|
|
`amount1` mediumint NOT NULL,
|
|
`amount2` mediumint NOT NULL,
|
|
`base_amount0` mediumint NOT NULL,
|
|
`base_amount1` mediumint NOT NULL,
|
|
`base_amount2` mediumint NOT NULL,
|
|
`maxduration` int NOT NULL DEFAULT '0',
|
|
`remaintime` int NOT NULL DEFAULT '0',
|
|
`remaincharges` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`spell`,`effect_mask`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Pet System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `pet_aura` WRITE;
|
|
/*!40000 ALTER TABLE `pet_aura` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `pet_aura` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `pet_spell`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `pet_spell` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
|
`spell` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
|
`active` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`spell`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Pet System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `pet_spell` WRITE;
|
|
/*!40000 ALTER TABLE `pet_spell` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `pet_spell` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `pet_spell_cooldown`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `pet_spell_cooldown` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
|
|
`spell` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
|
`time` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`,`spell`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `pet_spell_cooldown` WRITE;
|
|
/*!40000 ALTER TABLE `pet_spell_cooldown` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `pet_spell_cooldown` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `petition`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `petition` (
|
|
`ownerguid` int unsigned NOT NULL,
|
|
`petitionguid` int unsigned DEFAULT '0',
|
|
`name` varchar(24) NOT NULL,
|
|
`type` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`ownerguid`,`type`),
|
|
UNIQUE KEY `index_ownerguid_petitionguid` (`ownerguid`,`petitionguid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Guild System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `petition` WRITE;
|
|
/*!40000 ALTER TABLE `petition` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `petition` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `petition_sign`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `petition_sign` (
|
|
`ownerguid` int unsigned NOT NULL,
|
|
`petitionguid` int unsigned NOT NULL DEFAULT '0',
|
|
`playerguid` int unsigned NOT NULL DEFAULT '0',
|
|
`player_account` int unsigned NOT NULL DEFAULT '0',
|
|
`type` tinyint unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`petitionguid`,`playerguid`),
|
|
KEY `Idx_playerguid` (`playerguid`),
|
|
KEY `Idx_ownerguid` (`ownerguid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Guild System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `petition_sign` WRITE;
|
|
/*!40000 ALTER TABLE `petition_sign` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `petition_sign` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `pool_quest_save`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `pool_quest_save` (
|
|
`pool_id` int unsigned NOT NULL DEFAULT '0',
|
|
`quest_id` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`pool_id`,`quest_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `pool_quest_save` WRITE;
|
|
/*!40000 ALTER TABLE `pool_quest_save` DISABLE KEYS */;
|
|
INSERT INTO `pool_quest_save` VALUES (348,24635),(349,14104),(350,13904),(351,13914),(352,11379),(353,11665),(354,13422),(356,11372),(357,11387),(358,25159),(359,25154),(360,29364),(361,26235),(362,29332),(363,26192),(364,29355),(365,29313),(366,26543),(367,29348),(368,29361),(369,26414),(370,29347),(371,29323),(372,28063),(372,28130),(373,27949),(373,28046),(374,27975),(374,27978),(375,27944),(375,27972),(376,28687),(376,28721),(377,28678),(377,28683),(378,28698),(378,28700),(379,28690),(379,28692),(380,12726),(381,12762),(382,12741),(383,12760),(5662,13673),(5663,13764),(5664,13770),(5665,13774),(5666,13778),(5667,13783),(5668,13670),(5669,13616),(5670,13741),(5671,13746),(5672,13757),(5673,13753),(5674,13101),(5675,13115),(5676,13834),(5677,12962),(5678,24588),(12001,31527),(12002,31706),(12003,31234);
|
|
/*!40000 ALTER TABLE `pool_quest_save` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `reserved_name`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `reserved_name` (
|
|
`name` varchar(12) NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`name`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Player Reserved Names';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `reserved_name` WRITE;
|
|
/*!40000 ALTER TABLE `reserved_name` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `reserved_name` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `skyfire_db_updates`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `skyfire_db_updates` (
|
|
`domain` varchar(32) NOT NULL,
|
|
`filename` varchar(255) NOT NULL,
|
|
`hash` varchar(64) NOT NULL,
|
|
`applied_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`domain`,`filename`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `skyfire_db_updates` WRITE;
|
|
/*!40000 ALTER TABLE `skyfire_db_updates` DISABLE KEYS */;
|
|
INSERT INTO `skyfire_db_updates` VALUES ('characters','2026-06-27_characters_00.sql','97c43f7b2773537a','2026-08-15 13:33:52'),('characters','2026-06-27_characters_01.sql','437df24cf574dbac','2026-08-15 13:33:52'),('characters','2026_08_03_characters_00.sql','37a990f2d99293cc','2026-08-15 13:33:52');
|
|
/*!40000 ALTER TABLE `skyfire_db_updates` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `ticket_bug`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `ticket_bug` (
|
|
`ticketId` int unsigned NOT NULL,
|
|
`playerGuid` bigint unsigned NOT NULL,
|
|
`bugNote` text NOT NULL,
|
|
`ticketCreateTime` int unsigned NOT NULL DEFAULT '0',
|
|
`mapId` smallint unsigned NOT NULL DEFAULT '0',
|
|
`posX` float NOT NULL DEFAULT '0',
|
|
`posY` float NOT NULL DEFAULT '0',
|
|
`posZ` float NOT NULL DEFAULT '0',
|
|
`orientation` float NOT NULL DEFAULT '0',
|
|
`closedBy` bigint NOT NULL DEFAULT '0',
|
|
`assignedTo` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'GUID of admin to whom ticket is assigned',
|
|
`comment` text NOT NULL,
|
|
PRIMARY KEY (`ticketId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `ticket_bug` WRITE;
|
|
/*!40000 ALTER TABLE `ticket_bug` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `ticket_bug` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `ticket_suggest`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `ticket_suggest` (
|
|
`ticketId` int unsigned NOT NULL,
|
|
`playerGuid` bigint unsigned NOT NULL,
|
|
`suggestNote` text NOT NULL,
|
|
`ticketCreateTime` int unsigned NOT NULL DEFAULT '0',
|
|
`mapId` smallint unsigned NOT NULL DEFAULT '0',
|
|
`posX` float NOT NULL DEFAULT '0',
|
|
`posY` float NOT NULL DEFAULT '0',
|
|
`posZ` float NOT NULL DEFAULT '0',
|
|
`orientation` float NOT NULL DEFAULT '0',
|
|
`closedBy` bigint NOT NULL DEFAULT '0',
|
|
`assignedTo` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'GUID of admin to whom ticket is assigned',
|
|
`comment` text NOT NULL,
|
|
PRIMARY KEY (`ticketId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `ticket_suggest` WRITE;
|
|
/*!40000 ALTER TABLE `ticket_suggest` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `ticket_suggest` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `warden_action`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `warden_action` (
|
|
`wardenId` smallint unsigned NOT NULL,
|
|
`action` tinyint unsigned DEFAULT NULL,
|
|
PRIMARY KEY (`wardenId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `warden_action` WRITE;
|
|
/*!40000 ALTER TABLE `warden_action` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `warden_action` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
DROP TABLE IF EXISTS `worldstates`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `worldstates` (
|
|
`entry` int unsigned NOT NULL DEFAULT '0',
|
|
`value` int unsigned NOT NULL DEFAULT '0',
|
|
`comment` tinytext,
|
|
PRIMARY KEY (`entry`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Variable Saves';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `worldstates` WRITE;
|
|
/*!40000 ALTER TABLE `worldstates` DISABLE KEYS */;
|
|
INSERT INTO `worldstates` VALUES (3781,9000000,NULL),(3801,0,NULL),(3802,1,NULL),(20001,1787396400,'NextArenaPointDistributionTime'),(20002,1787405649,'NextWeeklyQuestResetTime'),(20003,1786878000,'NextBGRandomDailyResetTime'),(20004,0,'cleaning_flags'),(20006,1786878000,NULL),(20007,1788238800,NULL),(20050,3,NULL);
|
|
/*!40000 ALTER TABLE `worldstates` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|