Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- MySQL dump 10.13 Distrib 5.6.9-rc, for Win64 (x86_64)
- --
- -- Host: localhost Database: characters
- -- ------------------------------------------------------
- -- Server version 5.6.9-rc
- /*!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 */;
- /*!40101 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 */;
- --
- -- Table structure for table `account_data`
- --
- DROP TABLE IF EXISTS `account_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `account_data` (
- `accountId` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
- `type` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `data` BLOB NOT NULL,
- PRIMARY KEY (`accountId`,`type`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `account_data`
- --
- LOCK TABLES `account_data` WRITE;
- /*!40000 ALTER TABLE `account_data` DISABLE KEYS */;
- /*!40000 ALTER TABLE `account_data` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `account_instance_times`
- --
- DROP TABLE IF EXISTS `account_instance_times`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `account_instance_times` (
- `accountId` INT(10) UNSIGNED NOT NULL,
- `instanceId` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `releaseTime` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`accountId`,`instanceId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `account_instance_times`
- --
- LOCK TABLES `account_instance_times` WRITE;
- /*!40000 ALTER TABLE `account_instance_times` DISABLE KEYS */;
- /*!40000 ALTER TABLE `account_instance_times` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `account_tutorial`
- --
- DROP TABLE IF EXISTS `account_tutorial`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `account_tutorial` (
- `accountId` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
- `tut0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tut1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tut2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tut3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tut4` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tut5` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tut6` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tut7` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`accountId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `account_tutorial`
- --
- LOCK TABLES `account_tutorial` WRITE;
- /*!40000 ALTER TABLE `account_tutorial` DISABLE KEYS */;
- /*!40000 ALTER TABLE `account_tutorial` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `addons`
- --
- DROP TABLE IF EXISTS `addons`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `addons` (
- `name` VARCHAR(120) NOT NULL DEFAULT '',
- `crc` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`name`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Addons';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `addons`
- --
- LOCK TABLES `addons` WRITE;
- /*!40000 ALTER TABLE `addons` DISABLE KEYS */;
- /*!40000 ALTER TABLE `addons` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `arena_team`
- --
- DROP TABLE IF EXISTS `arena_team`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `arena_team` (
- `arenaTeamId` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `name` VARCHAR(24) NOT NULL,
- `captainGuid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `type` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `rating` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `seasonGames` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `seasonWins` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `weekGames` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `weekWins` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `rank` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `backgroundColor` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `emblemStyle` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `emblemColor` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `borderStyle` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `borderColor` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`arenaTeamId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `arena_team`
- --
- LOCK TABLES `arena_team` WRITE;
- /*!40000 ALTER TABLE `arena_team` DISABLE KEYS */;
- /*!40000 ALTER TABLE `arena_team` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `arena_team_member`
- --
- DROP TABLE IF EXISTS `arena_team_member`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `arena_team_member` (
- `arenaTeamId` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `weekGames` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `weekWins` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `seasonGames` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `seasonWins` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `personalRating` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`arenaTeamId`,`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `arena_team_member`
- --
- LOCK TABLES `arena_team_member` WRITE;
- /*!40000 ALTER TABLE `arena_team_member` DISABLE KEYS */;
- /*!40000 ALTER TABLE `arena_team_member` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `auctionhouse`
- --
- DROP TABLE IF EXISTS `auctionhouse`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `auctionhouse` (
- `id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `auctioneerguid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `itemguid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `itemowner` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `buyoutprice` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `buyguid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `lastbid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `startbid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `deposit` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- UNIQUE KEY `item_guid` (`itemguid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `auctionhouse`
- --
- LOCK TABLES `auctionhouse` WRITE;
- /*!40000 ALTER TABLE `auctionhouse` DISABLE KEYS */;
- /*!40000 ALTER TABLE `auctionhouse` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `banned_addons`
- --
- DROP TABLE IF EXISTS `banned_addons`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `banned_addons` (
- `Id` INT(10) 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=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `banned_addons`
- --
- LOCK TABLES `banned_addons` WRITE;
- /*!40000 ALTER TABLE `banned_addons` DISABLE KEYS */;
- /*!40000 ALTER TABLE `banned_addons` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `bugreport`
- --
- DROP TABLE IF EXISTS `bugreport`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `bugreport` (
- `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
- `type` longtext NOT NULL,
- `content` longtext NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Debug System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `bugreport`
- --
- LOCK TABLES `bugreport` WRITE;
- /*!40000 ALTER TABLE `bugreport` DISABLE KEYS */;
- /*!40000 ALTER TABLE `bugreport` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `calendar_events`
- --
- DROP TABLE IF EXISTS `calendar_events`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `calendar_events` (
- `id` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
- `creator` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `title` VARCHAR(255) NOT NULL DEFAULT '',
- `description` VARCHAR(255) NOT NULL DEFAULT '',
- `type` tinyint(1) UNSIGNED NOT NULL DEFAULT '4',
- `dungeon` INT(10) NOT NULL DEFAULT '-1',
- `eventtime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `flags` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `time2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `calendar_events`
- --
- LOCK TABLES `calendar_events` WRITE;
- /*!40000 ALTER TABLE `calendar_events` DISABLE KEYS */;
- /*!40000 ALTER TABLE `calendar_events` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `calendar_invites`
- --
- DROP TABLE IF EXISTS `calendar_invites`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `calendar_invites` (
- `id` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
- `event` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
- `invitee` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `sender` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `status` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
- `statustime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `rank` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
- `text` VARCHAR(255) NOT NULL DEFAULT '',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `calendar_invites`
- --
- LOCK TABLES `calendar_invites` WRITE;
- /*!40000 ALTER TABLE `calendar_invites` DISABLE KEYS */;
- /*!40000 ALTER TABLE `calendar_invites` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `channels`
- --
- DROP TABLE IF EXISTS `channels`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `channels` (
- `name` VARCHAR(128) NOT NULL,
- `team` INT(10) UNSIGNED NOT NULL,
- `announce` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
- `ownership` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
- `password` VARCHAR(32) DEFAULT NULL,
- `bannedList` text,
- `lastUsed` INT(10) UNSIGNED NOT NULL,
- PRIMARY KEY (`name`,`team`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Channel System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `channels`
- --
- LOCK TABLES `channels` WRITE;
- /*!40000 ALTER TABLE `channels` DISABLE KEYS */;
- /*!40000 ALTER TABLE `channels` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_account_data`
- --
- DROP TABLE IF EXISTS `character_account_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_account_data` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `type` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `data` BLOB NOT NULL,
- PRIMARY KEY (`guid`,`type`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_account_data`
- --
- LOCK TABLES `character_account_data` WRITE;
- /*!40000 ALTER TABLE `character_account_data` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_account_data` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_achievement`
- --
- DROP TABLE IF EXISTS `character_achievement`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_achievement` (
- `guid` INT(10) UNSIGNED NOT NULL,
- `achievement` SMALLINT(5) UNSIGNED NOT NULL,
- `date` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`achievement`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_achievement`
- --
- LOCK TABLES `character_achievement` WRITE;
- /*!40000 ALTER TABLE `character_achievement` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_achievement` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_achievement_progress`
- --
- DROP TABLE IF EXISTS `character_achievement_progress`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_achievement_progress` (
- `guid` INT(10) UNSIGNED NOT NULL,
- `criteria` SMALLINT(5) UNSIGNED NOT NULL,
- `counter` INT(10) UNSIGNED NOT NULL,
- `date` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`criteria`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_achievement_progress`
- --
- LOCK TABLES `character_achievement_progress` WRITE;
- /*!40000 ALTER TABLE `character_achievement_progress` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_achievement_progress` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_action`
- --
- DROP TABLE IF EXISTS `character_action`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_action` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `spec` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `button` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `action` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `type` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`spec`,`button`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_action`
- --
- LOCK TABLES `character_action` WRITE;
- /*!40000 ALTER TABLE `character_action` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_action` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_arena_stats`
- --
- DROP TABLE IF EXISTS `character_arena_stats`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_arena_stats` (
- `guid` INT(10) NOT NULL,
- `slot` tinyint(3) NOT NULL,
- `matchMakerRating` SMALLINT(5) NOT NULL,
- PRIMARY KEY (`guid`,`slot`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_arena_stats`
- --
- LOCK TABLES `character_arena_stats` WRITE;
- /*!40000 ALTER TABLE `character_arena_stats` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_arena_stats` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_aura`
- --
- DROP TABLE IF EXISTS `character_aura`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_aura` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `caster_guid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Full Global Unique Identifier',
- `item_guid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
- `spell` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `effect_mask` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `recalculate_mask` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `stackcount` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
- `amount0` INT(11) NOT NULL DEFAULT '0',
- `amount1` INT(11) NOT NULL DEFAULT '0',
- `amount2` INT(11) NOT NULL DEFAULT '0',
- `base_amount0` INT(11) NOT NULL DEFAULT '0',
- `base_amount1` INT(11) NOT NULL DEFAULT '0',
- `base_amount2` INT(11) NOT NULL DEFAULT '0',
- `maxduration` INT(11) NOT NULL DEFAULT '0',
- `remaintime` INT(11) NOT NULL DEFAULT '0',
- `remaincharges` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`caster_guid`,`item_guid`,`spell`,`effect_mask`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_aura`
- --
- LOCK TABLES `character_aura` WRITE;
- /*!40000 ALTER TABLE `character_aura` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_aura` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_banned`
- --
- DROP TABLE IF EXISTS `character_banned`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_banned` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `bandate` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `unbandate` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `bannedby` VARCHAR(50) NOT NULL,
- `banreason` VARCHAR(255) NOT NULL,
- `active` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
- PRIMARY KEY (`guid`,`bandate`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Ban List';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_banned`
- --
- LOCK TABLES `character_banned` WRITE;
- /*!40000 ALTER TABLE `character_banned` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_banned` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_battleground_data`
- --
- DROP TABLE IF EXISTS `character_battleground_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_battleground_data` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `instanceId` INT(10) UNSIGNED NOT NULL COMMENT 'Instance Identifier',
- `team` SMALLINT(5) 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(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
- `taxiStart` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `taxiEnd` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `mountSpell` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_battleground_data`
- --
- LOCK TABLES `character_battleground_data` WRITE;
- /*!40000 ALTER TABLE `character_battleground_data` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_battleground_data` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_battleground_random`
- --
- DROP TABLE IF EXISTS `character_battleground_random`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_battleground_random` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_battleground_random`
- --
- LOCK TABLES `character_battleground_random` WRITE;
- /*!40000 ALTER TABLE `character_battleground_random` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_battleground_random` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_declinedname`
- --
- DROP TABLE IF EXISTS `character_declinedname`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_declinedname` (
- `guid` INT(10) 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=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_declinedname`
- --
- LOCK TABLES `character_declinedname` WRITE;
- /*!40000 ALTER TABLE `character_declinedname` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_declinedname` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_equipmentsets`
- --
- DROP TABLE IF EXISTS `character_equipmentsets`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_equipmentsets` (
- `guid` INT(10) NOT NULL DEFAULT '0',
- `setguid` BIGINT(20) NOT NULL AUTO_INCREMENT,
- `setindex` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `name` VARCHAR(31) NOT NULL,
- `iconname` VARCHAR(100) NOT NULL,
- `ignore_mask` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item0` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item1` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item2` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item3` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item4` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item5` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item6` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item7` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item8` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item9` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item10` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item11` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item12` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item13` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item14` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item15` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item16` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item17` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- `item18` INT(11) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`setguid`),
- UNIQUE KEY `idx_set` (`guid`,`setguid`,`setindex`),
- KEY `Idx_setindex` (`setindex`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_equipmentsets`
- --
- LOCK TABLES `character_equipmentsets` WRITE;
- /*!40000 ALTER TABLE `character_equipmentsets` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_equipmentsets` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_gifts`
- --
- DROP TABLE IF EXISTS `character_gifts`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_gifts` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `item_guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `entry` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `flags` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`item_guid`),
- KEY `idx_guid` (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_gifts`
- --
- LOCK TABLES `character_gifts` WRITE;
- /*!40000 ALTER TABLE `character_gifts` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_gifts` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_glyphs`
- --
- DROP TABLE IF EXISTS `character_glyphs`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_glyphs` (
- `guid` INT(10) UNSIGNED NOT NULL,
- `spec` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `glyph1` SMALLINT(5) UNSIGNED DEFAULT '0',
- `glyph2` SMALLINT(5) UNSIGNED DEFAULT '0',
- `glyph3` SMALLINT(5) UNSIGNED DEFAULT '0',
- `glyph4` SMALLINT(5) UNSIGNED DEFAULT '0',
- `glyph5` SMALLINT(5) UNSIGNED DEFAULT '0',
- `glyph6` SMALLINT(5) UNSIGNED DEFAULT '0',
- PRIMARY KEY (`guid`,`spec`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_glyphs`
- --
- LOCK TABLES `character_glyphs` WRITE;
- /*!40000 ALTER TABLE `character_glyphs` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_glyphs` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_homebind`
- --
- DROP TABLE IF EXISTS `character_homebind`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_homebind` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `mapId` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
- `zoneId` SMALLINT(5) 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=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_homebind`
- --
- LOCK TABLES `character_homebind` WRITE;
- /*!40000 ALTER TABLE `character_homebind` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_homebind` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_instance`
- --
- DROP TABLE IF EXISTS `character_instance`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_instance` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `instance` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `permanent` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`instance`),
- KEY `instance` (`instance`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_instance`
- --
- LOCK TABLES `character_instance` WRITE;
- /*!40000 ALTER TABLE `character_instance` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_instance` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_inventory`
- --
- DROP TABLE IF EXISTS `character_inventory`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_inventory` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `bag` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `slot` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `item` INT(10) 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=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_inventory`
- --
- LOCK TABLES `character_inventory` WRITE;
- /*!40000 ALTER TABLE `character_inventory` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_inventory` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_pet`
- --
- DROP TABLE IF EXISTS `character_pet`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_pet` (
- `id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `entry` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `owner` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `modelid` INT(10) UNSIGNED DEFAULT '0',
- `CreatedBySpell` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `PetType` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `level` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '1',
- `exp` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `Reactstate` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `name` VARCHAR(21) NOT NULL DEFAULT 'Pet',
- `renamed` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `slot` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `curhealth` INT(10) UNSIGNED NOT NULL DEFAULT '1',
- `curmana` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `curhappiness` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `savetime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `abdata` text,
- PRIMARY KEY (`id`),
- KEY `owner` (`owner`),
- KEY `idx_slot` (`slot`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Pet System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_pet`
- --
- LOCK TABLES `character_pet` WRITE;
- /*!40000 ALTER TABLE `character_pet` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_pet` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_pet_declinedname`
- --
- DROP TABLE IF EXISTS `character_pet_declinedname`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_pet_declinedname` (
- `id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `owner` INT(10) 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=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_pet_declinedname`
- --
- LOCK TABLES `character_pet_declinedname` WRITE;
- /*!40000 ALTER TABLE `character_pet_declinedname` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_pet_declinedname` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_queststatus`
- --
- DROP TABLE IF EXISTS `character_queststatus`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_queststatus` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `quest` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- `status` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `explored` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `timer` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `mobcount1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `mobcount2` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `mobcount3` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `mobcount4` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `itemcount1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `itemcount2` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `itemcount3` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `itemcount4` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `playercount` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`quest`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_queststatus`
- --
- LOCK TABLES `character_queststatus` WRITE;
- /*!40000 ALTER TABLE `character_queststatus` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_queststatus` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_queststatus_daily`
- --
- DROP TABLE IF EXISTS `character_queststatus_daily`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_queststatus_daily` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `quest` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- `time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`quest`),
- KEY `idx_guid` (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_queststatus_daily`
- --
- LOCK TABLES `character_queststatus_daily` WRITE;
- /*!40000 ALTER TABLE `character_queststatus_daily` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_queststatus_daily` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_queststatus_monthly`
- --
- DROP TABLE IF EXISTS `character_queststatus_monthly`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_queststatus_monthly` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `quest` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- PRIMARY KEY (`guid`,`quest`),
- KEY `idx_guid` (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_queststatus_monthly`
- --
- LOCK TABLES `character_queststatus_monthly` WRITE;
- /*!40000 ALTER TABLE `character_queststatus_monthly` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_queststatus_monthly` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_queststatus_rewarded`
- --
- DROP TABLE IF EXISTS `character_queststatus_rewarded`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_queststatus_rewarded` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `quest` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- `active` tinyint(10) UNSIGNED NOT NULL DEFAULT '1',
- PRIMARY KEY (`guid`,`quest`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_queststatus_rewarded`
- --
- LOCK TABLES `character_queststatus_rewarded` WRITE;
- /*!40000 ALTER TABLE `character_queststatus_rewarded` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_queststatus_rewarded` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_queststatus_seasonal`
- --
- DROP TABLE IF EXISTS `character_queststatus_seasonal`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_queststatus_seasonal` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `quest` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- `event` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Event Identifier',
- PRIMARY KEY (`guid`,`quest`),
- KEY `idx_guid` (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_queststatus_seasonal`
- --
- LOCK TABLES `character_queststatus_seasonal` WRITE;
- /*!40000 ALTER TABLE `character_queststatus_seasonal` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_queststatus_seasonal` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_queststatus_weekly`
- --
- DROP TABLE IF EXISTS `character_queststatus_weekly`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_queststatus_weekly` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `quest` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- PRIMARY KEY (`guid`,`quest`),
- KEY `idx_guid` (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_queststatus_weekly`
- --
- LOCK TABLES `character_queststatus_weekly` WRITE;
- /*!40000 ALTER TABLE `character_queststatus_weekly` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_queststatus_weekly` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_reputation`
- --
- DROP TABLE IF EXISTS `character_reputation`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_reputation` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `faction` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `standing` INT(11) NOT NULL DEFAULT '0',
- `flags` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`faction`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_reputation`
- --
- LOCK TABLES `character_reputation` WRITE;
- /*!40000 ALTER TABLE `character_reputation` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_reputation` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_skills`
- --
- DROP TABLE IF EXISTS `character_skills`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_skills` (
- `guid` INT(10) UNSIGNED NOT NULL COMMENT 'Global Unique Identifier',
- `skill` SMALLINT(5) UNSIGNED NOT NULL,
- `value` SMALLINT(5) UNSIGNED NOT NULL,
- `max` SMALLINT(5) UNSIGNED NOT NULL,
- PRIMARY KEY (`guid`,`skill`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_skills`
- --
- LOCK TABLES `character_skills` WRITE;
- /*!40000 ALTER TABLE `character_skills` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_skills` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_social`
- --
- DROP TABLE IF EXISTS `character_social`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_social` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
- `friend` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Friend Global Unique Identifier',
- `flags` tinyint(3) 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=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_social`
- --
- LOCK TABLES `character_social` WRITE;
- /*!40000 ALTER TABLE `character_social` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_social` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_spell`
- --
- DROP TABLE IF EXISTS `character_spell`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_spell` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `spell` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
- `active` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
- `disabled` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`spell`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_spell`
- --
- LOCK TABLES `character_spell` WRITE;
- /*!40000 ALTER TABLE `character_spell` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_spell` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_spell_cooldown`
- --
- DROP TABLE IF EXISTS `character_spell_cooldown`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_spell_cooldown` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
- `spell` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
- `item` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Item Identifier',
- `time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`spell`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_spell_cooldown`
- --
- LOCK TABLES `character_spell_cooldown` WRITE;
- /*!40000 ALTER TABLE `character_spell_cooldown` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_spell_cooldown` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_stats`
- --
- DROP TABLE IF EXISTS `character_stats`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_stats` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
- `maxhealth` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `maxpower1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `maxpower2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `maxpower3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `maxpower4` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `maxpower5` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `maxpower6` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `maxpower7` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `strength` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `agility` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `stamina` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `intellect` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `spirit` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `armor` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `resHoly` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `resFire` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `resNature` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `resFrost` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `resShadow` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `resArcane` INT(10) 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',
- `spellCritPct` FLOAT UNSIGNED NOT NULL DEFAULT '0',
- `attackPower` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `rangedAttackPower` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `spellPower` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `resilience` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_stats`
- --
- LOCK TABLES `character_stats` WRITE;
- /*!40000 ALTER TABLE `character_stats` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_stats` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `character_talent`
- --
- DROP TABLE IF EXISTS `character_talent`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `character_talent` (
- `guid` INT(10) UNSIGNED NOT NULL,
- `spell` mediumint(8) UNSIGNED NOT NULL,
- `spec` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`spell`,`spec`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `character_talent`
- --
- LOCK TABLES `character_talent` WRITE;
- /*!40000 ALTER TABLE `character_talent` DISABLE KEYS */;
- /*!40000 ALTER TABLE `character_talent` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `characters`
- --
- DROP TABLE IF EXISTS `characters`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `characters` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `account` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
- `name` VARCHAR(12) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
- `race` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `class` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `gender` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `level` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `xp` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `money` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `playerBytes` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `playerBytes2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `playerFlags` INT(10) 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(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
- `instance_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `instance_mode_mask` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `orientation` FLOAT NOT NULL DEFAULT '0',
- `taximask` text NOT NULL,
- `online` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `cinematic` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `totaltime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `leveltime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `logout_time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `is_logout_resting` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `rest_bonus` FLOAT NOT NULL DEFAULT '0',
- `resettalents_cost` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `resettalents_time` INT(10) UNSIGNED NOT NULL DEFAULT '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(8) UNSIGNED NOT NULL DEFAULT '0',
- `extra_flags` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `stable_slots` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `at_login` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `zone` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `death_expire_time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `taxi_path` text,
- `arenaPoints` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `totalHonorPoints` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `todayHonorPoints` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `yesterdayHonorPoints` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `totalKills` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `todayKills` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `yesterdayKills` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `chosenTitle` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `knownCurrencies` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
- `watchedFaction` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `drunk` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `health` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `power1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `power2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `power3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `power4` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `power5` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `power6` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `power7` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `latency` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `speccount` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
- `activespec` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `exploredZones` longtext,
- `equipmentCache` longtext,
- `ammoId` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `knownTitles` longtext,
- `actionBars` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `grantableLevels` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `deleteInfos_Account` INT(10) UNSIGNED DEFAULT NULL,
- `deleteInfos_Name` VARCHAR(12) DEFAULT NULL,
- `deleteDate` INT(10) UNSIGNED DEFAULT NULL,
- PRIMARY KEY (`guid`),
- KEY `idx_account` (`account`),
- KEY `idx_online` (`online`),
- KEY `idx_name` (`name`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `characters`
- --
- LOCK TABLES `characters` WRITE;
- /*!40000 ALTER TABLE `characters` DISABLE KEYS */;
- /*!40000 ALTER TABLE `characters` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `corpse`
- --
- DROP TABLE IF EXISTS `corpse`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `corpse` (
- `corpseGuid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `guid` INT(10) 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(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
- `phaseMask` INT(10) UNSIGNED NOT NULL DEFAULT '1',
- `displayId` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `itemCache` text NOT NULL,
- `bytes1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `bytes2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `guildId` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `flags` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `dynFlags` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `corpseType` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `instanceId` INT(10) 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=utf8 COMMENT='Death System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `corpse`
- --
- LOCK TABLES `corpse` WRITE;
- /*!40000 ALTER TABLE `corpse` DISABLE KEYS */;
- /*!40000 ALTER TABLE `corpse` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `creature_respawn`
- --
- DROP TABLE IF EXISTS `creature_respawn`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `creature_respawn` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `respawnTime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `mapId` SMALLINT(10) UNSIGNED NOT NULL DEFAULT '0',
- `instanceId` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
- PRIMARY KEY (`guid`,`instanceId`),
- KEY `idx_instance` (`instanceId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Grid Loading System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `creature_respawn`
- --
- LOCK TABLES `creature_respawn` WRITE;
- /*!40000 ALTER TABLE `creature_respawn` DISABLE KEYS */;
- /*!40000 ALTER TABLE `creature_respawn` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `game_event_condition_save`
- --
- DROP TABLE IF EXISTS `game_event_condition_save`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `game_event_condition_save` (
- `eventEntry` tinyint(3) UNSIGNED NOT NULL,
- `condition_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `done` FLOAT DEFAULT '0',
- PRIMARY KEY (`eventEntry`,`condition_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `game_event_condition_save`
- --
- 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;
- --
- -- Table structure for table `game_event_save`
- --
- DROP TABLE IF EXISTS `game_event_save`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `game_event_save` (
- `eventEntry` tinyint(3) UNSIGNED NOT NULL,
- `state` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
- `next_start` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`eventEntry`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `game_event_save`
- --
- LOCK TABLES `game_event_save` WRITE;
- /*!40000 ALTER TABLE `game_event_save` DISABLE KEYS */;
- /*!40000 ALTER TABLE `game_event_save` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `gameobject_respawn`
- --
- DROP TABLE IF EXISTS `gameobject_respawn`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `gameobject_respawn` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `respawnTime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `mapId` SMALLINT(10) UNSIGNED NOT NULL DEFAULT '0',
- `instanceId` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
- PRIMARY KEY (`guid`,`instanceId`),
- KEY `idx_instance` (`instanceId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Grid Loading System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `gameobject_respawn`
- --
- LOCK TABLES `gameobject_respawn` WRITE;
- /*!40000 ALTER TABLE `gameobject_respawn` DISABLE KEYS */;
- /*!40000 ALTER TABLE `gameobject_respawn` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `gm_subsurveys`
- --
- DROP TABLE IF EXISTS `gm_subsurveys`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `gm_subsurveys` (
- `surveyId` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `subsurveyId` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `rank` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `comment` text NOT NULL,
- PRIMARY KEY (`surveyId`,`subsurveyId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `gm_subsurveys`
- --
- LOCK TABLES `gm_subsurveys` WRITE;
- /*!40000 ALTER TABLE `gm_subsurveys` DISABLE KEYS */;
- /*!40000 ALTER TABLE `gm_subsurveys` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `gm_surveys`
- --
- DROP TABLE IF EXISTS `gm_surveys`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `gm_surveys` (
- `surveyId` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `mainSurvey` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `overallComment` longtext NOT NULL,
- `createTime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`surveyId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `gm_surveys`
- --
- LOCK TABLES `gm_surveys` WRITE;
- /*!40000 ALTER TABLE `gm_surveys` DISABLE KEYS */;
- /*!40000 ALTER TABLE `gm_surveys` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `gm_tickets`
- --
- DROP TABLE IF EXISTS `gm_tickets`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `gm_tickets` (
- `ticketId` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `guid` INT(10) 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(10) UNSIGNED NOT NULL DEFAULT '0',
- `mapId` SMALLINT(5) 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(10) UNSIGNED NOT NULL DEFAULT '0',
- `closedBy` INT(10) NOT NULL DEFAULT '0',
- `assignedTo` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'GUID of admin to whom ticket is assigned',
- `comment` text NOT NULL,
- `response` text NOT NULL,
- `completed` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `escalated` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `viewed` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `haveTicket` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`ticketId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `gm_tickets`
- --
- LOCK TABLES `gm_tickets` WRITE;
- /*!40000 ALTER TABLE `gm_tickets` DISABLE KEYS */;
- /*!40000 ALTER TABLE `gm_tickets` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `group_instance`
- --
- DROP TABLE IF EXISTS `group_instance`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `group_instance` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `instance` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `permanent` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`instance`),
- KEY `instance` (`instance`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `group_instance`
- --
- LOCK TABLES `group_instance` WRITE;
- /*!40000 ALTER TABLE `group_instance` DISABLE KEYS */;
- /*!40000 ALTER TABLE `group_instance` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `group_member`
- --
- DROP TABLE IF EXISTS `group_member`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `group_member` (
- `guid` INT(10) UNSIGNED NOT NULL,
- `memberGuid` INT(10) UNSIGNED NOT NULL,
- `memberFlags` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `subgroup` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `roles` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`memberGuid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Groups';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `group_member`
- --
- LOCK TABLES `group_member` WRITE;
- /*!40000 ALTER TABLE `group_member` DISABLE KEYS */;
- /*!40000 ALTER TABLE `group_member` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `groups`
- --
- DROP TABLE IF EXISTS `groups`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `groups` (
- `guid` INT(10) UNSIGNED NOT NULL,
- `leaderGuid` INT(10) UNSIGNED NOT NULL,
- `lootMethod` tinyint(3) UNSIGNED NOT NULL,
- `looterGuid` INT(10) UNSIGNED NOT NULL,
- `lootThreshold` tinyint(3) UNSIGNED NOT NULL,
- `icon1` INT(10) UNSIGNED NOT NULL,
- `icon2` INT(10) UNSIGNED NOT NULL,
- `icon3` INT(10) UNSIGNED NOT NULL,
- `icon4` INT(10) UNSIGNED NOT NULL,
- `icon5` INT(10) UNSIGNED NOT NULL,
- `icon6` INT(10) UNSIGNED NOT NULL,
- `icon7` INT(10) UNSIGNED NOT NULL,
- `icon8` INT(10) UNSIGNED NOT NULL,
- `groupType` tinyint(3) UNSIGNED NOT NULL,
- `difficulty` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `raiddifficulty` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`),
- KEY `leaderGuid` (`leaderGuid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Groups';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `groups`
- --
- LOCK TABLES `groups` WRITE;
- /*!40000 ALTER TABLE `groups` DISABLE KEYS */;
- /*!40000 ALTER TABLE `groups` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild`
- --
- DROP TABLE IF EXISTS `guild`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild` (
- `guildid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `name` VARCHAR(24) NOT NULL DEFAULT '',
- `leaderguid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `EmblemStyle` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `EmblemColor` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `BorderStyle` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `BorderColor` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `BackgroundColor` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `info` text NOT NULL,
- `motd` VARCHAR(128) NOT NULL DEFAULT '',
- `createdate` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `BankMoney` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guildid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild`
- --
- LOCK TABLES `guild` WRITE;
- /*!40000 ALTER TABLE `guild` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild_bank_eventlog`
- --
- DROP TABLE IF EXISTS `guild_bank_eventlog`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild_bank_eventlog` (
- `guildid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Guild Identificator',
- `LogGuid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Log record identificator - auxiliary column',
- `TabId` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Guild bank TabId',
- `EventType` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Event type',
- `PlayerGuid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `ItemOrMoney` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `ItemStackCount` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `DestTabId` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Destination Tab Id',
- `TimeStamp` INT(10) 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=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild_bank_eventlog`
- --
- LOCK TABLES `guild_bank_eventlog` WRITE;
- /*!40000 ALTER TABLE `guild_bank_eventlog` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild_bank_eventlog` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild_bank_item`
- --
- DROP TABLE IF EXISTS `guild_bank_item`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild_bank_item` (
- `guildid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `TabId` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `SlotId` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `item_guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guildid`,`TabId`,`SlotId`),
- KEY `guildid_key` (`guildid`),
- KEY `Idx_item_guid` (`item_guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild_bank_item`
- --
- LOCK TABLES `guild_bank_item` WRITE;
- /*!40000 ALTER TABLE `guild_bank_item` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild_bank_item` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild_bank_right`
- --
- DROP TABLE IF EXISTS `guild_bank_right`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild_bank_right` (
- `guildid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `TabId` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `rid` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `gbright` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `SlotPerDay` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guildid`,`TabId`,`rid`),
- KEY `guildid_key` (`guildid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild_bank_right`
- --
- LOCK TABLES `guild_bank_right` WRITE;
- /*!40000 ALTER TABLE `guild_bank_right` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild_bank_right` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild_bank_tab`
- --
- DROP TABLE IF EXISTS `guild_bank_tab`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild_bank_tab` (
- `guildid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `TabId` tinyint(3) 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=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild_bank_tab`
- --
- LOCK TABLES `guild_bank_tab` WRITE;
- /*!40000 ALTER TABLE `guild_bank_tab` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild_bank_tab` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild_eventlog`
- --
- DROP TABLE IF EXISTS `guild_eventlog`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild_eventlog` (
- `guildid` INT(10) UNSIGNED NOT NULL COMMENT 'Guild Identificator',
- `LogGuid` INT(10) UNSIGNED NOT NULL COMMENT 'Log record identificator - auxiliary column',
- `EventType` tinyint(3) UNSIGNED NOT NULL COMMENT 'Event type',
- `PlayerGuid1` INT(10) UNSIGNED NOT NULL COMMENT 'Player 1',
- `PlayerGuid2` INT(10) UNSIGNED NOT NULL COMMENT 'Player 2',
- `NewRank` tinyint(3) UNSIGNED NOT NULL COMMENT 'New rank(in case promotion/demotion)',
- `TimeStamp` INT(10) 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=utf8 COMMENT='Guild Eventlog';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild_eventlog`
- --
- LOCK TABLES `guild_eventlog` WRITE;
- /*!40000 ALTER TABLE `guild_eventlog` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild_eventlog` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild_member`
- --
- DROP TABLE IF EXISTS `guild_member`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild_member` (
- `guildid` INT(10) UNSIGNED NOT NULL COMMENT 'Guild Identificator',
- `guid` INT(10) UNSIGNED NOT NULL,
- `rank` tinyint(3) 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`,`rank`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild_member`
- --
- LOCK TABLES `guild_member` WRITE;
- /*!40000 ALTER TABLE `guild_member` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild_member` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild_member_withdraw`
- --
- DROP TABLE IF EXISTS `guild_member_withdraw`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild_member_withdraw` (
- `guid` INT(10) UNSIGNED NOT NULL,
- `tab0` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tab1` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tab2` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tab3` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tab4` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `tab5` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `money` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild Member Daily Withdraws';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild_member_withdraw`
- --
- LOCK TABLES `guild_member_withdraw` WRITE;
- /*!40000 ALTER TABLE `guild_member_withdraw` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild_member_withdraw` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `guild_rank`
- --
- DROP TABLE IF EXISTS `guild_rank`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `guild_rank` (
- `guildid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `rid` tinyint(3) UNSIGNED NOT NULL,
- `rname` VARCHAR(20) NOT NULL DEFAULT '',
- `rights` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `BankMoneyPerDay` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guildid`,`rid`),
- KEY `Idx_rid` (`rid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `guild_rank`
- --
- LOCK TABLES `guild_rank` WRITE;
- /*!40000 ALTER TABLE `guild_rank` DISABLE KEYS */;
- /*!40000 ALTER TABLE `guild_rank` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `instance`
- --
- DROP TABLE IF EXISTS `instance`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `instance` (
- `id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `map` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `resettime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `difficulty` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `completedEncounters` INT(10) 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=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `instance`
- --
- LOCK TABLES `instance` WRITE;
- /*!40000 ALTER TABLE `instance` DISABLE KEYS */;
- /*!40000 ALTER TABLE `instance` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `instance_reset`
- --
- DROP TABLE IF EXISTS `instance_reset`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `instance_reset` (
- `mapid` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `difficulty` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `resettime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`mapid`,`difficulty`),
- KEY `difficulty` (`difficulty`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `instance_reset`
- --
- LOCK TABLES `instance_reset` WRITE;
- /*!40000 ALTER TABLE `instance_reset` DISABLE KEYS */;
- /*!40000 ALTER TABLE `instance_reset` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `item_instance`
- --
- DROP TABLE IF EXISTS `item_instance`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `item_instance` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `itemEntry` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `owner_guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `creatorGuid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `giftCreatorGuid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `count` INT(10) UNSIGNED NOT NULL DEFAULT '1',
- `duration` INT(10) NOT NULL DEFAULT '0',
- `charges` tinytext,
- `flags` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `enchantments` text NOT NULL,
- `randomPropertyId` SMALLINT(5) NOT NULL DEFAULT '0',
- `durability` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `playedTime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `text` text,
- PRIMARY KEY (`guid`),
- KEY `idx_owner_guid` (`owner_guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Item System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `item_instance`
- --
- LOCK TABLES `item_instance` WRITE;
- /*!40000 ALTER TABLE `item_instance` DISABLE KEYS */;
- /*!40000 ALTER TABLE `item_instance` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `item_loot_items`
- --
- DROP TABLE IF EXISTS `item_loot_items`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `item_loot_items` (
- `container_id` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'guid of container (item_instance.guid)',
- `item_id` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'loot item entry (item_instance.itemEntry)',
- `item_count` INT(10) 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(10) NOT NULL DEFAULT '0' COMMENT 'random enchantment added when originally rolled',
- `rnd_suffix` INT(10) NOT NULL DEFAULT '0' COMMENT 'random suffix added when originally rolled'
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `item_loot_items`
- --
- LOCK TABLES `item_loot_items` WRITE;
- /*!40000 ALTER TABLE `item_loot_items` DISABLE KEYS */;
- /*!40000 ALTER TABLE `item_loot_items` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `item_loot_money`
- --
- DROP TABLE IF EXISTS `item_loot_money`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `item_loot_money` (
- `container_id` INT(10) NOT NULL DEFAULT '0' COMMENT 'guid of container (item_instance.guid)',
- `money` INT(10) NOT NULL DEFAULT '0' COMMENT 'money loot (in copper)'
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `item_loot_money`
- --
- LOCK TABLES `item_loot_money` WRITE;
- /*!40000 ALTER TABLE `item_loot_money` DISABLE KEYS */;
- /*!40000 ALTER TABLE `item_loot_money` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `item_refund_instance`
- --
- DROP TABLE IF EXISTS `item_refund_instance`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `item_refund_instance` (
- `item_guid` INT(10) UNSIGNED NOT NULL COMMENT 'Item GUID',
- `player_guid` INT(10) UNSIGNED NOT NULL COMMENT 'Player GUID',
- `paidMoney` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `paidExtendedCost` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`item_guid`,`player_guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Item Refund System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `item_refund_instance`
- --
- LOCK TABLES `item_refund_instance` WRITE;
- /*!40000 ALTER TABLE `item_refund_instance` DISABLE KEYS */;
- /*!40000 ALTER TABLE `item_refund_instance` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `item_soulbound_trade_data`
- --
- DROP TABLE IF EXISTS `item_soulbound_trade_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `item_soulbound_trade_data` (
- `itemGuid` INT(10) 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=utf8 COMMENT='Item Refund System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `item_soulbound_trade_data`
- --
- 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;
- --
- -- Table structure for table `lag_reports`
- --
- DROP TABLE IF EXISTS `lag_reports`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `lag_reports` (
- `reportId` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `lagType` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `mapId` SMALLINT(5) 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(10) UNSIGNED NOT NULL DEFAULT '0',
- `createTime` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`reportId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `lag_reports`
- --
- LOCK TABLES `lag_reports` WRITE;
- /*!40000 ALTER TABLE `lag_reports` DISABLE KEYS */;
- /*!40000 ALTER TABLE `lag_reports` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `lfg_data`
- --
- DROP TABLE IF EXISTS `lfg_data`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `lfg_data` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `dungeon` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `state` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='LFG Data';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `lfg_data`
- --
- LOCK TABLES `lfg_data` WRITE;
- /*!40000 ALTER TABLE `lfg_data` DISABLE KEYS */;
- /*!40000 ALTER TABLE `lfg_data` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `mail`
- --
- DROP TABLE IF EXISTS `mail`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `mail` (
- `id` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Identifier',
- `messageType` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `stationery` tinyint(3) NOT NULL DEFAULT '41',
- `mailTemplateId` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `sender` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
- `receiver` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
- `subject` longtext,
- `body` longtext,
- `has_items` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `expire_time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `deliver_time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `money` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `cod` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `checked` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `idx_receiver` (`receiver`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Mail System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `mail`
- --
- LOCK TABLES `mail` WRITE;
- /*!40000 ALTER TABLE `mail` DISABLE KEYS */;
- /*!40000 ALTER TABLE `mail` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `mail_items`
- --
- DROP TABLE IF EXISTS `mail_items`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `mail_items` (
- `mail_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `item_guid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `receiver` INT(10) 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=utf8 ROW_FORMAT=DYNAMIC;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `mail_items`
- --
- LOCK TABLES `mail_items` WRITE;
- /*!40000 ALTER TABLE `mail_items` DISABLE KEYS */;
- /*!40000 ALTER TABLE `mail_items` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `pet_aura`
- --
- DROP TABLE IF EXISTS `pet_aura`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `pet_aura` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `caster_guid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Full Global Unique Identifier',
- `spell` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `effect_mask` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `recalculate_mask` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `stackcount` tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
- `amount0` mediumint(8) NOT NULL,
- `amount1` mediumint(8) NOT NULL,
- `amount2` mediumint(8) NOT NULL,
- `base_amount0` mediumint(8) NOT NULL,
- `base_amount1` mediumint(8) NOT NULL,
- `base_amount2` mediumint(8) NOT NULL,
- `maxduration` INT(11) NOT NULL DEFAULT '0',
- `remaintime` INT(11) NOT NULL DEFAULT '0',
- `remaincharges` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`spell`,`effect_mask`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Pet System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `pet_aura`
- --
- LOCK TABLES `pet_aura` WRITE;
- /*!40000 ALTER TABLE `pet_aura` DISABLE KEYS */;
- /*!40000 ALTER TABLE `pet_aura` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `pet_spell`
- --
- DROP TABLE IF EXISTS `pet_spell`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `pet_spell` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
- `spell` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
- `active` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`spell`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Pet System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `pet_spell`
- --
- LOCK TABLES `pet_spell` WRITE;
- /*!40000 ALTER TABLE `pet_spell` DISABLE KEYS */;
- /*!40000 ALTER TABLE `pet_spell` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `pet_spell_cooldown`
- --
- DROP TABLE IF EXISTS `pet_spell_cooldown`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `pet_spell_cooldown` (
- `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
- `spell` mediumint(8) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
- `time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`spell`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `pet_spell_cooldown`
- --
- LOCK TABLES `pet_spell_cooldown` WRITE;
- /*!40000 ALTER TABLE `pet_spell_cooldown` DISABLE KEYS */;
- /*!40000 ALTER TABLE `pet_spell_cooldown` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `petition`
- --
- DROP TABLE IF EXISTS `petition`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `petition` (
- `ownerguid` INT(10) UNSIGNED NOT NULL,
- `petitionguid` INT(10) UNSIGNED DEFAULT '0',
- `name` VARCHAR(24) NOT NULL,
- `type` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`ownerguid`,`type`),
- UNIQUE KEY `index_ownerguid_petitionguid` (`ownerguid`,`petitionguid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `petition`
- --
- LOCK TABLES `petition` WRITE;
- /*!40000 ALTER TABLE `petition` DISABLE KEYS */;
- /*!40000 ALTER TABLE `petition` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `petition_sign`
- --
- DROP TABLE IF EXISTS `petition_sign`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `petition_sign` (
- `ownerguid` INT(10) UNSIGNED NOT NULL,
- `petitionguid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `playerguid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `player_account` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `type` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`petitionguid`,`playerguid`),
- KEY `Idx_playerguid` (`playerguid`),
- KEY `Idx_ownerguid` (`ownerguid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `petition_sign`
- --
- LOCK TABLES `petition_sign` WRITE;
- /*!40000 ALTER TABLE `petition_sign` DISABLE KEYS */;
- /*!40000 ALTER TABLE `petition_sign` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `pool_quest_save`
- --
- DROP TABLE IF EXISTS `pool_quest_save`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `pool_quest_save` (
- `pool_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `quest_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- PRIMARY KEY (`pool_id`,`quest_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `pool_quest_save`
- --
- LOCK TABLES `pool_quest_save` WRITE;
- /*!40000 ALTER TABLE `pool_quest_save` DISABLE KEYS */;
- /*!40000 ALTER TABLE `pool_quest_save` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `reserved_name`
- --
- DROP TABLE IF EXISTS `reserved_name`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `reserved_name` (
- `name` VARCHAR(12) NOT NULL DEFAULT '',
- PRIMARY KEY (`name`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player Reserved Names';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `reserved_name`
- --
- LOCK TABLES `reserved_name` WRITE;
- /*!40000 ALTER TABLE `reserved_name` DISABLE KEYS */;
- /*!40000 ALTER TABLE `reserved_name` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `warden_action`
- --
- DROP TABLE IF EXISTS `warden_action`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `warden_action` (
- `wardenId` SMALLINT(5) UNSIGNED NOT NULL,
- `action` tinyint(3) UNSIGNED DEFAULT NULL,
- PRIMARY KEY (`wardenId`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `warden_action`
- --
- LOCK TABLES `warden_action` WRITE;
- /*!40000 ALTER TABLE `warden_action` DISABLE KEYS */;
- /*!40000 ALTER TABLE `warden_action` ENABLE KEYS */;
- UNLOCK TABLES;
- --
- -- Table structure for table `worldstates`
- --
- DROP TABLE IF EXISTS `worldstates`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `worldstates` (
- `entry` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `value` INT(10) UNSIGNED NOT NULL DEFAULT '0',
- `comment` tinytext,
- PRIMARY KEY (`entry`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Saves';
- /*!40101 SET character_set_client = @saved_cs_client */;
- --
- -- Dumping data for table `worldstates`
- --
- LOCK TABLES `worldstates` WRITE;
- /*!40000 ALTER TABLE `worldstates` DISABLE KEYS */;
- INSERT INTO `worldstates` VALUES (20001,0,'NextArenaPointDistributionTime'),(20002,0,'NextWeeklyQuestResetTime'),(20003,0,'NextBGRandomDailyResetTime'),(20004,0,'cleaning_flags');
- /*!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 */;
- -- Dump completed on 2013-02-04 16:22:06
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement