All pastes #2069816 Raw Edit

Stuff

public sql v1 · immutable
#2069816 ·published 2011-05-27 04:27 UTC
rendered paste body
-- MySQL dump 10.13  Distrib 5.1.57, for debian-linux-gnu (x86_64)---- Host: localhost    Database: cata_char-- -------------------------------------------------------- Server version	5.1.57-1~dotdeb.1/*!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` (  `account` 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 (`account`,`type`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- Table structure for table `arena_team_stats`--DROP TABLE IF EXISTS `arena_team_stats`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `arena_team_stats` (  `arenateamid` int(10) unsigned NOT NULL DEFAULT '0',  `rating` int(10) unsigned NOT NULL DEFAULT '0',  `games` int(10) unsigned NOT NULL DEFAULT '0',  `wins` int(10) unsigned NOT NULL DEFAULT '0',  `played` int(10) unsigned NOT NULL DEFAULT '0',  `wins2` int(10) unsigned NOT NULL DEFAULT '0',  `rank` int(10) unsigned NOT NULL DEFAULT '0',  PRIMARY KEY (`arenateamid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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(11) NOT NULL AUTO_INCREMENT COMMENT 'Identifier',  `type` longtext NOT NULL,  `content` longtext NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Debug System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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,  `personal_rating` int(10) NOT NULL,  `matchMakerRating` int(10) NOT NULL,  PRIMARY KEY (`guid`,`slot`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 'Account id',  `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=MyISAM DEFAULT CHARSET=utf8 COMMENT='Ban List';/*!40101 SET character_set_client = @saved_cs_client */;---- 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,  `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',  `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 */;---- 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 */;---- Table structure for table `character_branchspec`--DROP TABLE IF EXISTS `character_branchspec`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `character_branchspec` (  `guid` int(11) unsigned NOT NULL DEFAULT '0',  `spec` int(11) unsigned NOT NULL DEFAULT '0',  `branchSpec` int(11) unsigned NOT NULL DEFAULT '0',  PRIMARY KEY (`guid`,`spec`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `character_currency`--DROP TABLE IF EXISTS `character_currency`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `character_currency` (  `guid` int(11) unsigned NOT NULL,  `currency` smallint(5) unsigned NOT NULL,  `count` int(11) unsigned NOT NULL,  `thisweek` int(11) unsigned NOT NULL,  PRIMARY KEY (`guid`,`currency`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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,  `item0` int(10) unsigned NOT NULL DEFAULT '0',  `item1` int(10) unsigned NOT NULL DEFAULT '0',  `item2` int(10) unsigned NOT NULL DEFAULT '0',  `item3` int(10) unsigned NOT NULL DEFAULT '0',  `item4` int(10) unsigned NOT NULL DEFAULT '0',  `item5` int(10) unsigned NOT NULL DEFAULT '0',  `item6` int(10) unsigned NOT NULL DEFAULT '0',  `item7` int(10) unsigned NOT NULL DEFAULT '0',  `item8` int(10) unsigned NOT NULL DEFAULT '0',  `item9` int(10) unsigned NOT NULL DEFAULT '0',  `item10` int(10) unsigned NOT NULL DEFAULT '0',  `item11` int(10) unsigned NOT NULL DEFAULT '0',  `item12` int(10) unsigned NOT NULL DEFAULT '0',  `item13` int(10) unsigned NOT NULL DEFAULT '0',  `item14` int(10) unsigned NOT NULL DEFAULT '0',  `item15` int(10) unsigned NOT NULL DEFAULT '0',  `item16` int(10) unsigned NOT NULL DEFAULT '0',  `item17` int(10) unsigned NOT NULL DEFAULT '0',  `item18` int(10) 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 */;---- 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 */;---- 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 NOT NULL 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',  `glyph7` smallint(5) unsigned DEFAULT '0',  `glyph8` smallint(5) unsigned DEFAULT '0',  `glyph9` int(11) unsigned DEFAULT '0',  PRIMARY KEY (`guid`,`spec`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- 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',  `map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',  `zone` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Zone Identifier',  `position_x` float NOT NULL DEFAULT '0',  `position_y` float NOT NULL DEFAULT '0',  `position_z` float NOT NULL DEFAULT '0',  PRIMARY KEY (`guid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 */;---- 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',  `resettalents_cost` int(10) unsigned NOT NULL DEFAULT '0',  `resettalents_time` int(10) unsigned NOT NULL DEFAULT '0',  `abdata` text,  PRIMARY KEY (`id`),  KEY `owner` (`owner`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Pet System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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',  PRIMARY KEY (`guid`,`quest`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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',  PRIMARY KEY (`guid`,`quest`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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',  `maxpower8` int(10) unsigned NOT NULL DEFAULT '0',  `maxpower9` int(10) unsigned NOT NULL DEFAULT '0',  `maxpower10` 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',  PRIMARY KEY (`guid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- Table structure for table `character_tutorial`--DROP TABLE IF EXISTS `character_tutorial`;/*!40101 SET @saved_cs_client     = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `character_tutorial` (  `account` int(10) unsigned NOT NULL AUTO_INCREMENT 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 (`account`)) ENGINE=InnoDB AUTO_INCREMENT=127162 DEFAULT CHARSET=utf8 COMMENT='Player System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',  `account` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',  `name` varchar(12) NOT NULL DEFAULT '',  `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` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',  `instance_id` int(11) unsigned NOT NULL DEFAULT '0',  `instance_mode_mask` tinyint(2) unsigned NOT NULL DEFAULT '0',  `orientation` float NOT NULL DEFAULT '0',  `taximask` longtext,  `online` tinyint(3) unsigned NOT NULL DEFAULT '0',  `cinematic` tinyint(3) unsigned NOT NULL DEFAULT '0',  `totaltime` int(11) unsigned NOT NULL DEFAULT '0',  `leveltime` int(11) unsigned NOT NULL DEFAULT '0',  `logout_time` bigint(20) 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(11) unsigned NOT NULL DEFAULT '0',  `resettalents_time` bigint(20) 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` bigint(20) unsigned NOT NULL DEFAULT '0',  `extra_flags` int(11) unsigned NOT NULL DEFAULT '0',  `stable_slots` tinyint(1) unsigned NOT NULL DEFAULT '0',  `at_login` int(11) unsigned NOT NULL DEFAULT '0',  `zone` int(11) unsigned NOT NULL DEFAULT '0',  `death_expire_time` bigint(20) 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` bigint(10) unsigned NOT NULL DEFAULT '0',  `drunk` smallint(5) 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',  `power8` int(10) unsigned NOT NULL DEFAULT '0',  `power9` int(10) unsigned NOT NULL DEFAULT '0',  `power10` int(10) unsigned NOT NULL DEFAULT '0',  `latency` int(11) 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',  `deleteInfos_Account` int(11) unsigned DEFAULT NULL,  `deleteInfos_Name` varchar(12) DEFAULT NULL,  `deleteDate` bigint(20) DEFAULT NULL,  `currentPetSlot` int(10) DEFAULT NULL,  `petSlotUsed` int(10) DEFAULT NULL,  PRIMARY KEY (`guid`),  KEY `idx_account` (`account`),  KEY `idx_online` (`online`),  KEY `idx_name` (`name`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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` (  `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',  `player` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',  `position_x` float NOT NULL DEFAULT '0',  `position_y` float NOT NULL DEFAULT '0',  `position_z` float NOT NULL DEFAULT '0',  `orientation` float NOT NULL DEFAULT '0',  `map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',  `phaseMask` tinyint(3) 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',  `guild` 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',  `corpse_type` tinyint(3) unsigned NOT NULL DEFAULT '0',  `instance` int(10) unsigned NOT NULL DEFAULT '0',  PRIMARY KEY (`guid`),  KEY `idx_type` (`corpse_type`),  KEY `instance` (`instance`),  KEY `Idx_player` (`player`),  KEY `Idx_time` (`time`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Death System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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` (  `event_id` smallint(5) unsigned NOT NULL,  `condition_id` int(10) unsigned NOT NULL DEFAULT '0',  `done` float DEFAULT '0',  PRIMARY KEY (`event_id`,`condition_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- 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` (  `event_id` mediumint(8) unsigned NOT NULL,  `state` tinyint(3) unsigned NOT NULL DEFAULT '1',  `next_start` bigint(11) unsigned NOT NULL DEFAULT '0',  PRIMARY KEY (`event_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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,  `player` int(10) unsigned NOT NULL DEFAULT '0',  `mainSurvey` int(10) unsigned NOT NULL DEFAULT '0',  `overall_comment` longtext NOT NULL,  `timestamp` 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 */;---- 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` (  `guid` int(10) unsigned NOT NULL AUTO_INCREMENT,  `playerGuid` int(10) unsigned NOT NULL DEFAULT '0',  `name` varchar(12) NOT NULL,  `message` text NOT NULL,  `createtime` int(10) unsigned NOT NULL DEFAULT '0',  `map` 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',  `timestamp` int(10) unsigned NOT NULL DEFAULT '0',  `closed` int(11) NOT NULL DEFAULT '0',  `assignedto` int(10) unsigned NOT NULL DEFAULT '0',  `comment` 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',  PRIMARY KEY (`guid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 */;---- 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 */;---- 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',  `xp` bigint(20) unsigned NOT NULL,  `level` int(10) unsigned NOT NULL,  PRIMARY KEY (`guildid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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 '',  `BankResetTimeMoney` int(10) unsigned NOT NULL DEFAULT '0',  `BankRemMoney` int(10) unsigned NOT NULL DEFAULT '0',  `BankResetTimeTab0` int(10) unsigned NOT NULL DEFAULT '0',  `BankRemSlotsTab0` int(10) unsigned NOT NULL DEFAULT '0',  `BankResetTimeTab1` int(10) unsigned NOT NULL DEFAULT '0',  `BankRemSlotsTab1` int(10) unsigned NOT NULL DEFAULT '0',  `BankResetTimeTab2` int(10) unsigned NOT NULL DEFAULT '0',  `BankRemSlotsTab2` int(10) unsigned NOT NULL DEFAULT '0',  `BankResetTimeTab3` int(10) unsigned NOT NULL DEFAULT '0',  `BankRemSlotsTab3` int(10) unsigned NOT NULL DEFAULT '0',  `BankResetTimeTab4` int(10) unsigned NOT NULL DEFAULT '0',  `BankRemSlotsTab4` int(10) unsigned NOT NULL DEFAULT '0',  `BankResetTimeTab5` int(10) unsigned NOT NULL DEFAULT '0',  `BankRemSlotsTab5` int(10) unsigned NOT NULL DEFAULT '0',  `achievementPoints` int(11) unsigned NOT NULL DEFAULT '0',  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 */;---- 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(15) 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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 */;---- 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` (  `report_id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `player` int(10) unsigned NOT NULL DEFAULT '0',  `lag_type` tinyint(3) unsigned NOT NULL DEFAULT '0',  `map` 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',  PRIMARY KEY (`report_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 (`mail_id`,`item_guid`),  KEY `idx_receiver` (`receiver`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 */;---- 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 */;---- 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,  PRIMARY KEY (`ownerguid`),  UNIQUE KEY `index_ownerguid_petitionguid` (`ownerguid`,`petitionguid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';/*!40101 SET character_set_client = @saved_cs_client */;---- 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 */;---- 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 */;---- 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 */;/*!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 2011-05-27  6:26:44