2016-10-16 17:38:56 +01:00
-- MySQL dump 10.16 Distrib 10.1.6-MariaDB, for Win64 (AMD64)
2008-10-11 14:16:25 -05:00
--
2016-10-16 17:38:56 +01:00
-- Host: localhost Database: characters6
2008-10-11 14:16:25 -05:00
-- ------------------------------------------------------
2016-10-16 17:38:56 +01:00
-- Server version 5.7.14-log
2008-10-11 14:16:25 -05:00
/* !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 */ ;
2008-12-24 09:58:26 -06:00
--
-- Table structure for table `account_data`
--
DROP TABLE IF EXISTS ` account_data ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-12-24 09:58:26 -06:00
CREATE TABLE ` account_data ` (
2011-02-24 23:39:45 +06:00
` accountId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Account Identifier ' ,
2011-01-19 02:53:44 +01:00
` type ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` data ` blob NOT NULL ,
2011-02-24 23:39:45 +06:00
PRIMARY KEY ( ` accountId ` , ` type ` )
2008-12-24 09:58:26 -06:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-12-24 09:58:26 -06:00
--
-- 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 ;
2011-01-24 11:20:30 +01:00
--
-- 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 ;
2011-02-24 23:57:43 +06:00
--
-- 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 ;
2008-12-19 16:05:13 -06:00
--
2008-10-11 14:16:25 -05:00
-- Table structure for table `arena_team`
--
DROP TABLE IF EXISTS ` arena_team ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` arena_team ` (
2011-04-05 21:54:28 +02:00
` arenaTeamId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 02:53:44 +01:00
` name ` varchar ( 24 ) NOT NULL ,
2014-10-20 19:25:50 +02:00
` captainGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` type ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-04-08 15:57:25 +02:00
` rating ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-04-05 21:54:28 +02:00
` 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 ' ,
2011-04-08 15:57:25 +02:00
` rank ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-04-05 21:54:28 +02:00
` 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 ` )
2008-10-11 14:16:25 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` arena_team_member ` (
2011-04-12 09:34:35 +02:00
` arenaTeamId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-20 19:25:50 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-04-05 21:54:28 +02:00
` 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 ' ,
2011-04-08 21:14:30 +02:00
` personalRating ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-04-12 09:34:35 +02:00
PRIMARY KEY ( ` arenaTeamId ` , ` guid ` )
2008-10-11 14:16:25 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` auctionhouse ` (
2011-01-19 02:53:44 +01:00
` id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-20 19:25:50 +02:00
` auctioneerguid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` itemguid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` itemowner ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 02:53:44 +01:00
` buyoutprice ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-20 19:25:50 +02:00
` buyguid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 02:53:44 +01:00
` lastbid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` startbid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` deposit ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` id ` ) ,
2008-10-11 14:16:25 -05:00
UNIQUE KEY ` item_guid ` ( ` itemguid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- Dumping data for table `auctionhouse`
--
LOCK TABLES ` auctionhouse ` WRITE ;
/* !40000 ALTER TABLE `auctionhouse` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `auctionhouse` ENABLE KEYS */ ;
UNLOCK TABLES ;
2015-08-22 20:29:17 +02:00
--
-- Table structure for table `blackmarket_auctions`
--
DROP TABLE IF EXISTS ` blackmarket_auctions ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` blackmarket_auctions ` (
` marketId ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` currentBid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` time ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` numBids ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` bidder ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` marketId ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `blackmarket_auctions`
--
LOCK TABLES ` blackmarket_auctions ` WRITE ;
/* !40000 ALTER TABLE `blackmarket_auctions` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `blackmarket_auctions` ENABLE KEYS */ ;
UNLOCK TABLES ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `bugreport`
--
DROP TABLE IF EXISTS ` bugreport ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` bugreport ` (
2011-01-19 02:53:44 +01:00
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT COMMENT ' Identifier ' ,
2011-01-19 01:31:08 +01:00
` type ` longtext NOT NULL ,
` content ` longtext NOT NULL ,
PRIMARY KEY ( ` id ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Debug System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- Dumping data for table `bugreport`
--
LOCK TABLES ` bugreport ` WRITE ;
/* !40000 ALTER TABLE `bugreport` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `bugreport` ENABLE KEYS */ ;
UNLOCK TABLES ;
2012-11-18 22:42:28 +00:00
--
-- 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 */ ;
2013-02-04 16:22:43 +00:00
CREATE TABLE ` calendar_events ` (
2015-06-21 13:12:22 +02:00
` EventID ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Owner ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Title ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` Description ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` EventType ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 4 ' ,
` TextureID ` int ( 10 ) NOT NULL DEFAULT ' -1 ' ,
` Date ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Flags ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` LockDate ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` EventID ` )
2012-11-18 22:42:28 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
2013-02-04 16:22:43 +00:00
--
-- 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 ;
2012-11-18 22:42:28 +00:00
--
-- 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 */ ;
2013-02-04 16:22:43 +00:00
CREATE TABLE ` calendar_invites ` (
2015-06-21 13:12:22 +02:00
` InviteID ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` EventID ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Invitee ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Sender ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Status ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` ResponseTime ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` ModerationRank ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Note ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
PRIMARY KEY ( ` InviteID ` )
2012-11-18 22:42:28 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
2013-02-04 16:22:43 +00:00
--
-- 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 ;
2011-01-19 01:31:08 +01:00
--
2010-02-01 18:52:42 +01:00
-- Table structure for table `channels`
2011-01-19 01:31:08 +01:00
--
2010-02-01 18:52:42 +01:00
2009-07-21 21:16:30 +02:00
DROP TABLE IF EXISTS ` channels ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2009-07-21 21:16:30 +02:00
CREATE TABLE ` channels ` (
2011-03-11 17:18:17 +06:00
` 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 ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Channel System ' ;
2010-02-01 18:52:42 +01:00
/* !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 ;
2009-07-21 21:16:30 +02:00
2009-09-01 16:47:49 -05:00
--
-- Table structure for table `character_account_data`
--
DROP TABLE IF EXISTS ` character_account_data ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2009-09-01 16:47:49 -05:00
CREATE TABLE ` character_account_data ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 02:53:44 +01:00
` type ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` data ` blob NOT NULL ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` type ` )
2009-09-01 16:47:49 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2009-09-01 16:47:49 -05:00
--
-- 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 ;
2008-12-24 09:58:26 -06:00
--
-- Table structure for table `character_achievement`
--
DROP TABLE IF EXISTS ` character_achievement ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-12-24 09:58:26 -06:00
CREATE TABLE ` character_achievement ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL ,
2016-05-07 01:16:29 +02:00
` achievement ` int ( 10 ) unsigned NOT NULL ,
2011-01-19 02:53:44 +01:00
` date ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` achievement ` )
2009-07-01 18:37:45 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-12-24 09:58:26 -06:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-12-24 09:58:26 -06:00
CREATE TABLE ` character_achievement_progress ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL ,
2014-12-31 18:00:35 +01:00
` criteria ` int ( 10 ) unsigned NOT NULL ,
2013-06-20 14:28:32 +02:00
` counter ` bigint ( 20 ) unsigned NOT NULL ,
2011-01-19 02:53:44 +01:00
` date ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` criteria ` )
2009-07-01 18:37:45 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-12-24 09:58:26 -06:00
--
-- 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 ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `character_action`
--
DROP TABLE IF EXISTS ` character_action ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_action ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` spec ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` button ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 14:04:33 +01:00
` action ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` type ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` spec ` , ` button ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2011-01-19 01:31:08 +01:00
--
-- 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 ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) NOT NULL ,
2011-01-19 14:04:33 +01:00
` slot ` tinyint ( 3 ) NOT NULL ,
2011-04-05 21:54:28 +02:00
` matchMakerRating ` smallint ( 5 ) NOT NULL ,
2011-01-19 01:31:08 +01:00
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 ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `character_aura`
--
DROP TABLE IF EXISTS ` character_aura ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_aura ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2015-01-16 23:32:41 +01:00
` casterGuid ` binary ( 16 ) NOT NULL COMMENT ' Full Global Unique Identifier ' ,
` itemGuid ` binary ( 16 ) NOT NULL ,
` spell ` int ( 10 ) unsigned NOT NULL ,
` effectMask ` int ( 10 ) unsigned NOT NULL ,
` recalculateMask ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` stackCount ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
` maxDuration ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` remainTime ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` remainCharges ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-11-24 00:16:42 +01:00
` castItemLevel ` int ( 11 ) NOT NULL DEFAULT ' -1 ' ,
2015-01-16 23:32:41 +01:00
PRIMARY KEY ( ` guid ` , ` casterGuid ` , ` itemGuid ` , ` spell ` , ` effectMask ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2015-01-16 23:32:41 +01:00
--
-- Table structure for table `character_aura_effect`
--
DROP TABLE IF EXISTS ` character_aura_effect ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_aura_effect ` (
` guid ` bigint ( 20 ) unsigned NOT NULL ,
2015-01-27 22:43:45 +00:00
` casterGuid ` binary ( 16 ) NOT NULL COMMENT ' Full Global Unique Identifier ' ,
2015-01-16 23:32:41 +01:00
` itemGuid ` binary ( 16 ) NOT NULL ,
2015-01-27 22:43:45 +00:00
` spell ` int ( 10 ) unsigned NOT NULL ,
2015-01-16 23:32:41 +01:00
` effectMask ` int ( 10 ) unsigned NOT NULL ,
` effectIndex ` tinyint ( 3 ) unsigned NOT NULL ,
2015-01-27 22:43:45 +00:00
` amount ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` baseAmount ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` casterGuid ` , ` itemGuid ` , ` spell ` , ` effectMask ` , ` effectIndex ` )
2015-01-16 23:32:41 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2015-01-27 22:43:45 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2015-01-16 23:32:41 +01:00
--
-- Dumping data for table `character_aura_effect`
--
LOCK TABLES ` character_aura_effect ` WRITE ;
/* !40000 ALTER TABLE `character_aura_effect` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_aura_effect` ENABLE KEYS */ ;
UNLOCK TABLES ;
2010-09-19 17:02:14 +02:00
--
-- 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 ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-01-19 14:04:33 +01:00
` bandate ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` unbandate ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2010-09-19 17:02:14 +02:00
` bannedby ` varchar ( 50 ) NOT NULL ,
` banreason ` varchar ( 255 ) NOT NULL ,
2011-01-19 14:04:33 +01:00
` active ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` bandate ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Ban List ' ;
2010-09-19 17:02:14 +02:00
/* !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 ;
2009-08-12 20:27:00 -05:00
--
-- Table structure for table `character_battleground_data`
--
DROP TABLE IF EXISTS ` character_battleground_data ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2009-08-12 20:27:00 -05:00
CREATE TABLE ` character_battleground_data ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-04-08 11:28:10 +06:00
` instanceId ` int ( 10 ) unsigned NOT NULL COMMENT ' Instance Identifier ' ,
2011-01-19 14:04:33 +01:00
` team ` smallint ( 5 ) unsigned NOT NULL ,
2011-04-08 11:28:10 +06:00
` 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 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2009-08-12 20:27:00 -05:00
--
-- 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 ;
2010-05-26 11:34:37 +02:00
--
-- 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 ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` )
2010-05-26 11:34:37 +02:00
) 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 ;
2012-09-05 19:01:28 +01:00
--
-- Table structure for table `character_cuf_profiles`
--
DROP TABLE IF EXISTS ` character_cuf_profiles ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_cuf_profiles ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Character Guid ' ,
2012-09-05 19:13:22 +01:00
` id ` tinyint ( 3 ) unsigned NOT NULL COMMENT ' Profile Id (0-4) ' ,
2012-09-05 19:01:28 +01:00
` name ` varchar ( 12 ) NOT NULL COMMENT ' Profile Name ' ,
` frameHeight ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Profile Frame Height ' ,
` frameWidth ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Profile Frame Width ' ,
` sortBy ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Frame Sort By ' ,
` healthText ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Frame Health Text ' ,
` boolOptions ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Many Configurable Bool Options ' ,
` unk146 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Profile Unk Int8 ' ,
` unk147 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Profile Unk Int8 ' ,
` unk148 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Profile Unk Int8 ' ,
` unk150 ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Profile Unk Int16 ' ,
` unk152 ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Profile Unk Int16 ' ,
` unk154 ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Profile Unk Int16 ' ,
PRIMARY KEY ( ` guid ` , ` id ` ) ,
KEY ` index ` ( ` id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_cuf_profiles`
--
LOCK TABLES ` character_cuf_profiles ` WRITE ;
/* !40000 ALTER TABLE `character_cuf_profiles` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_cuf_profiles` ENABLE KEYS */ ;
UNLOCK TABLES ;
2012-09-03 23:19:18 +03:00
--
-- 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 ` (
2014-12-29 09:08:41 +01:00
` CharacterGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Currency ` smallint ( 5 ) unsigned NOT NULL ,
` Quantity ` int ( 10 ) unsigned NOT NULL ,
` WeeklyQuantity ` int ( 10 ) unsigned NOT NULL ,
` TrackedQuantity ` int ( 10 ) unsigned NOT NULL ,
` Flags ` tinyint ( 3 ) unsigned NOT NULL ,
PRIMARY KEY ( ` CharacterGuid ` , ` Currency ` )
2012-09-03 23:19:18 +03:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_currency`
--
LOCK TABLES ` character_currency ` WRITE ;
/* !40000 ALTER TABLE `character_currency` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_currency` ENABLE KEYS */ ;
UNLOCK TABLES ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `character_declinedname`
--
DROP TABLE IF EXISTS ` character_declinedname ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_declinedname ` (
2014-10-23 21:34:03 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-01-19 01:31:08 +01:00
` 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 ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2009-06-11 19:48:53 -05:00
--
-- Table structure for table `character_equipmentsets`
--
DROP TABLE IF EXISTS ` character_equipmentsets ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2009-06-11 19:48:53 -05:00
CREATE TABLE ` character_equipmentsets ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` setguid ` bigint ( 20 ) NOT NULL AUTO_INCREMENT ,
2011-01-19 14:04:33 +01:00
` setindex ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` name ` varchar ( 31 ) NOT NULL ,
2009-06-11 19:48:53 -05:00
` iconname ` varchar ( 100 ) NOT NULL ,
2012-07-13 15:16:37 +02:00
` ignore_mask ` int ( 11 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-23 23:04:16 +02:00
` item0 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item1 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item2 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item3 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item4 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item5 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item6 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item7 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item8 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item9 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item10 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item11 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item12 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item13 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item14 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item15 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item16 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item17 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item18 ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` setguid ` ) ,
2010-04-14 13:02:05 +04:00
UNIQUE KEY ` idx_set ` ( ` guid ` , ` setguid ` , ` setindex ` ) ,
2011-01-19 01:31:08 +01:00
KEY ` Idx_setindex ` ( ` setindex ` )
2009-06-11 19:48:53 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2009-06-11 19:48:53 -05:00
--
-- 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 ;
2015-05-08 00:03:15 +02:00
--
-- Table structure for table `character_garrison`
--
DROP TABLE IF EXISTS ` character_garrison ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_garrison ` (
` guid ` bigint ( 20 ) unsigned NOT NULL ,
` siteLevelId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` followerActivationsRemainingToday ` 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_garrison`
--
LOCK TABLES ` character_garrison ` WRITE ;
/* !40000 ALTER TABLE `character_garrison` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_garrison` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `character_garrison_blueprints`
--
DROP TABLE IF EXISTS ` character_garrison_blueprints ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_garrison_blueprints ` (
` guid ` bigint ( 20 ) unsigned NOT NULL ,
` buildingId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` buildingId ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_garrison_blueprints`
--
LOCK TABLES ` character_garrison_blueprints ` WRITE ;
/* !40000 ALTER TABLE `character_garrison_blueprints` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_garrison_blueprints` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `character_garrison_buildings`
--
DROP TABLE IF EXISTS ` character_garrison_buildings ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_garrison_buildings ` (
` guid ` bigint ( 20 ) unsigned NOT NULL ,
` plotInstanceId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` buildingId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` timeBuilt ` bigint ( 20 ) unsigned NOT NULL ,
` active ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` plotInstanceId ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_garrison_buildings`
--
LOCK TABLES ` character_garrison_buildings ` WRITE ;
/* !40000 ALTER TABLE `character_garrison_buildings` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_garrison_buildings` ENABLE KEYS */ ;
UNLOCK TABLES ;
2015-07-10 02:19:37 +02:00
--
-- Table structure for table `character_garrison_follower_abilities`
--
DROP TABLE IF EXISTS ` character_garrison_follower_abilities ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_garrison_follower_abilities ` (
` dbId ` bigint ( 20 ) unsigned NOT NULL ,
` abilityId ` int ( 10 ) unsigned NOT NULL ,
` slot ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` dbId ` , ` abilityId ` , ` slot ` ) ,
CONSTRAINT ` fk_foll_dbid ` FOREIGN KEY ( ` dbId ` ) REFERENCES ` character_garrison_followers ` ( ` dbId ` ) ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_garrison_follower_abilities`
--
LOCK TABLES ` character_garrison_follower_abilities ` WRITE ;
/* !40000 ALTER TABLE `character_garrison_follower_abilities` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_garrison_follower_abilities` ENABLE KEYS */ ;
UNLOCK TABLES ;
2015-05-22 00:17:48 +02:00
--
-- Table structure for table `character_garrison_followers`
--
DROP TABLE IF EXISTS ` character_garrison_followers ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_garrison_followers ` (
` dbId ` bigint ( 20 ) unsigned NOT NULL ,
` guid ` bigint ( 20 ) unsigned NOT NULL ,
` followerId ` int ( 10 ) unsigned NOT NULL ,
` quality ` int ( 10 ) unsigned NOT NULL DEFAULT ' 2 ' ,
` level ` int ( 10 ) unsigned NOT NULL DEFAULT ' 90 ' ,
` itemLevelWeapon ` int ( 10 ) unsigned NOT NULL DEFAULT ' 600 ' ,
` itemLevelArmor ` int ( 10 ) unsigned NOT NULL DEFAULT ' 600 ' ,
` xp ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` currentBuilding ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` currentMission ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` status ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` dbId ` ) ,
UNIQUE KEY ` idx_guid_id ` ( ` guid ` , ` followerId ` ) ,
CONSTRAINT ` fk_foll_owner ` FOREIGN KEY ( ` guid ` ) REFERENCES ` characters ` ( ` guid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_garrison_followers`
--
LOCK TABLES ` character_garrison_followers ` WRITE ;
/* !40000 ALTER TABLE `character_garrison_followers` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_garrison_followers` ENABLE KEYS */ ;
UNLOCK TABLES ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `character_gifts`
--
DROP TABLE IF EXISTS ` character_gifts ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_gifts ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` item_guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 14:04:33 +01:00
` entry ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` flags ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` item_guid ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` idx_guid ` ( ` guid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2016-08-25 19:12:00 +02:00
--
-- 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 ` bigint ( 20 ) unsigned NOT NULL ,
` talentGroup ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-10-16 17:38:56 +01:00
` glyphId ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-08-25 19:12:00 +02:00
PRIMARY KEY ( ` guid ` , ` talentGroup ` , ` glyphId ` )
) 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 ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `character_homebind`
--
DROP TABLE IF EXISTS ` character_homebind ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_homebind ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-04-08 17:04:51 +06:00
` 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 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_instance ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 18:40:36 +01:00
` instance ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` permanent ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-04-11 02:42:03 +01:00
` extendState ` tinyint ( 2 ) unsigned NOT NULL DEFAULT ' 1 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` instance ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` instance ` ( ` instance ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_inventory ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
` bag ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` slot ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-23 23:04:16 +02:00
` item ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Item Global Unique Identifier ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` item ` ) ,
2011-03-19 00:23:35 +01:00
UNIQUE KEY ` guid ` ( ` guid ` , ` bag ` , ` slot ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` idx_guid ` ( ` guid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_pet ` (
2011-01-19 18:40:36 +01:00
` id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` entry ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-26 02:57:28 +02:00
` owner ` bigint ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 18:40:36 +01:00
` modelid ` int ( 10 ) unsigned DEFAULT ' 0 ' ,
` CreatedBySpell ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` PetType ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 18:40:36 +01:00
` 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 ' ,
` savetime ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` abdata ` text ,
2016-04-29 11:49:07 -04:00
` specialization ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` id ` ) ,
2011-05-29 18:28:54 +02:00
KEY ` owner ` ( ` owner ` ) ,
KEY ` idx_slot ` ( ` slot ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Pet System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_pet_declinedname ` (
2011-01-19 18:40:36 +01:00
` id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` owner ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` 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 ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_queststatus ` (
2015-01-27 22:43:45 +00:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` quest ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` status ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` timer ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` quest ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_queststatus_daily ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-01-19 18:40:36 +01:00
` quest ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Quest Identifier ' ,
` time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` quest ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` idx_guid ` ( ` guid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2013-02-04 16:22:43 +00:00
--
-- 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 ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2013-02-04 16:22:43 +00:00
` 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 ;
2015-01-27 22:43:45 +00:00
--
-- Table structure for table `character_queststatus_objectives`
--
DROP TABLE IF EXISTS ` character_queststatus_objectives ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_queststatus_objectives ` (
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` quest ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` objective ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` data ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` quest ` , ` objective ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_queststatus_objectives`
--
LOCK TABLES ` character_queststatus_objectives ` WRITE ;
/* !40000 ALTER TABLE `character_queststatus_objectives` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_queststatus_objectives` ENABLE KEYS */ ;
UNLOCK TABLES ;
2011-01-19 01:31:08 +01:00
--
-- Table structure for table `character_queststatus_rewarded`
--
2010-12-26 04:16:18 +01:00
DROP TABLE IF EXISTS ` character_queststatus_rewarded ` ;
2011-01-19 01:31:08 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2010-12-26 04:16:18 +01:00
CREATE TABLE ` character_queststatus_rewarded ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-01-19 01:31:08 +01:00
` quest ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Quest Identifier ' ,
2013-03-04 14:15:52 +01:00
` active ` tinyint ( 10 ) unsigned NOT NULL DEFAULT ' 1 ' ,
2010-12-26 04:16:18 +01:00
PRIMARY KEY ( ` guid ` , ` quest ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2011-01-19 01:31:08 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_queststatus_rewarded`
--
2010-12-26 04:16:18 +01:00
2011-01-19 01:31:08 +01:00
LOCK TABLES ` character_queststatus_rewarded ` WRITE ;
/* !40000 ALTER TABLE `character_queststatus_rewarded` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_queststatus_rewarded` ENABLE KEYS */ ;
UNLOCK TABLES ;
2010-12-26 04:16:18 +01:00
2012-01-07 22:20:58 +00:00
--
-- 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 ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2012-01-07 22:20:58 +00:00
` 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 ;
2010-04-15 08:26:30 +04:00
--
-- Table structure for table `character_queststatus_weekly`
--
DROP TABLE IF EXISTS ` character_queststatus_weekly ` ;
2011-01-19 01:31:08 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2010-04-15 08:26:30 +04:00
CREATE TABLE ` character_queststatus_weekly ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-01-19 18:40:36 +01:00
` quest ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Quest Identifier ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` quest ` ) ,
2010-04-15 08:26:30 +04:00
KEY ` idx_guid ` ( ` guid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2011-01-19 01:31:08 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2010-04-15 08:26:30 +04:00
--
-- 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 ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `character_reputation`
--
DROP TABLE IF EXISTS ` character_reputation ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_reputation ` (
2014-10-24 19:56:17 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-01-19 18:40:36 +01:00
` faction ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` standing ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
2011-01-19 18:40:36 +01:00
` flags ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` faction ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2009-12-14 20:47:43 +01:00
--
-- Table structure for table `character_skills`
--
DROP TABLE IF EXISTS ` character_skills ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2009-12-14 20:47:43 +01:00
CREATE TABLE ` character_skills ` (
2014-10-23 23:04:16 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL COMMENT ' Global Unique Identifier ' ,
2011-01-19 18:40:36 +01:00
` skill ` smallint ( 5 ) unsigned NOT NULL ,
` value ` smallint ( 5 ) unsigned NOT NULL ,
` max ` smallint ( 5 ) unsigned NOT NULL ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` skill ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2009-12-14 20:47:43 +01:00
--
-- 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 ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `character_social`
--
DROP TABLE IF EXISTS ` character_social ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_social ` (
2014-10-24 19:56:17 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Character Global Unique Identifier ' ,
` friend ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Friend Global Unique Identifier ' ,
2011-01-19 22:46:21 +01:00
` flags ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Friend Flags ' ,
2008-12-21 09:33:44 -06:00
` note ` varchar ( 48 ) NOT NULL DEFAULT ' ' COMMENT ' Friend Note ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` friend ` , ` flags ` ) ,
2011-01-19 22:46:21 +01:00
KEY ` friend ` ( ` friend ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_spell ` (
2014-10-24 19:56:17 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-01-19 22:46:21 +01:00
` spell ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Spell Identifier ' ,
2011-01-19 01:31:08 +01:00
` active ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
` disabled ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` spell ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Player System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2015-02-17 01:01:44 +01:00
--
-- Table structure for table `character_spell_charges`
--
DROP TABLE IF EXISTS ` character_spell_charges ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_spell_charges ` (
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier, Low part ' ,
` categoryId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' SpellCategory.dbc Identifier ' ,
` rechargeStart ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` rechargeEnd ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
KEY ` idx_guid ` ( ` guid ` ) USING BTREE
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_spell_charges`
--
LOCK TABLES ` character_spell_charges ` WRITE ;
/* !40000 ALTER TABLE `character_spell_charges` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_spell_charges` ENABLE KEYS */ ;
UNLOCK TABLES ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `character_spell_cooldown`
--
DROP TABLE IF EXISTS ` character_spell_cooldown ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` character_spell_cooldown ` (
2014-10-24 19:56:17 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier, Low part ' ,
2015-02-17 01:01:44 +01:00
` spell ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Spell Identifier ' ,
2011-01-19 22:46:21 +01:00
` item ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Item Identifier ' ,
` time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-09-10 19:39:30 +02:00
` categoryId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Spell category Id ' ,
2015-09-10 20:04:24 +02:00
` categoryEnd ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` spell ` )
2008-10-11 14:16:25 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2010-04-14 13:29:56 +04:00
--
-- Table structure for table `character_stats`
--
DROP TABLE IF EXISTS ` character_stats ` ;
2011-01-19 01:31:08 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2010-04-14 13:29:56 +04:00
CREATE TABLE ` character_stats ` (
2014-10-24 19:56:17 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier, Low part ' ,
2011-01-19 01:31:08 +01:00
` 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 ' ,
2015-07-12 00:41:56 +02:00
` maxpower6 ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` 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 ' ,
` 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 ' ,
2011-05-09 17:01:10 +03:00
` resilience ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` )
2010-04-14 13:29:56 +04:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2011-01-19 01:31:08 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2010-04-14 13:29:56 +04:00
--
-- 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 ;
2009-08-14 17:24:52 -07:00
--
-- Table structure for table `character_talent`
--
DROP TABLE IF EXISTS ` character_talent ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2009-08-14 17:24:52 -07:00
CREATE TABLE ` character_talent ` (
2014-10-24 19:56:17 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL ,
2011-01-19 22:46:21 +01:00
` spell ` mediumint ( 8 ) unsigned NOT NULL ,
2014-11-12 03:58:17 +02:00
` talentGroup ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` spell ` , ` talentGroup ` )
2009-08-14 17:24:52 -07:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2009-08-14 17:24:52 -07:00
--
2010-02-01 18:52:42 +01:00
-- Dumping data for table `character_talent`
2009-08-14 17:24:52 -07:00
--
LOCK TABLES ` character_talent ` WRITE ;
/* !40000 ALTER TABLE `character_talent` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_talent` ENABLE KEYS */ ;
UNLOCK TABLES ;
2015-04-21 12:20:03 +02:00
--
-- Table structure for table `character_template`
--
DROP TABLE IF EXISTS ` character_template ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_template ` (
` id ` int ( 10 ) unsigned NOT NULL ,
` name ` varchar ( 70 ) NOT NULL ,
` description ` varchar ( 100 ) NOT NULL ,
` level ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
PRIMARY KEY ( ` id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_template`
--
LOCK TABLES ` character_template ` WRITE ;
/* !40000 ALTER TABLE `character_template` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_template` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `character_template_class`
--
DROP TABLE IF EXISTS ` character_template_class ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_template_class ` (
` templateId ` int ( 10 ) unsigned NOT NULL ,
` factionGroup ` tinyint ( 3 ) unsigned NOT NULL COMMENT ' 3 - Alliance, 5 - Horde ' ,
` class ` tinyint ( 3 ) unsigned NOT NULL ,
PRIMARY KEY ( ` templateId ` , ` factionGroup ` , ` class ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_template_class`
--
LOCK TABLES ` character_template_class ` WRITE ;
/* !40000 ALTER TABLE `character_template_class` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_template_class` ENABLE KEYS */ ;
UNLOCK TABLES ;
2016-07-19 16:55:21 +02:00
--
-- Table structure for table `character_transmog_outfits`
--
DROP TABLE IF EXISTS ` character_transmog_outfits ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_transmog_outfits ` (
` guid ` bigint ( 20 ) NOT NULL DEFAULT ' 0 ' ,
` setguid ` bigint ( 20 ) NOT NULL AUTO_INCREMENT ,
` setindex ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` name ` varchar ( 128 ) NOT NULL ,
` iconname ` varchar ( 256 ) NOT NULL ,
` ignore_mask ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` appearance0 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance1 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance2 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance3 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance4 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance5 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance6 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance7 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance8 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance9 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance10 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance11 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance12 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance13 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance14 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance15 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance16 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance17 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` appearance18 ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` mainHandEnchant ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` offHandEnchant ` int ( 10 ) 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_transmog_outfits`
--
LOCK TABLES ` character_transmog_outfits ` WRITE ;
/* !40000 ALTER TABLE `character_transmog_outfits` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_transmog_outfits` ENABLE KEYS */ ;
UNLOCK TABLES ;
2012-08-08 03:42:48 +01:00
--
-- Table structure for table `character_void_storage`
--
DROP TABLE IF EXISTS ` character_void_storage ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` character_void_storage ` (
` itemId ` bigint ( 20 ) unsigned NOT NULL ,
2014-10-24 19:56:17 +02:00
` playerGuid ` bigint ( 20 ) unsigned NOT NULL ,
2012-08-08 03:42:48 +01:00
` itemEntry ` mediumint ( 8 ) unsigned NOT NULL ,
` slot ` tinyint ( 3 ) unsigned NOT NULL ,
2014-10-24 19:56:17 +02:00
` creatorGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-08-08 03:42:48 +01:00
` randomProperty ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` suffixFactor ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-08-12 23:05:36 +02:00
` upgradeId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-08-15 00:03:38 +02:00
` fixedScalingLevel ` int ( 10 ) unsigned DEFAULT ' 0 ' ,
` artifactKnowledgeLevel ` int ( 10 ) unsigned DEFAULT ' 0 ' ,
2015-08-12 23:05:36 +02:00
` bonusListIDs ` text ,
2012-08-08 03:42:48 +01:00
PRIMARY KEY ( ` itemId ` ) ,
UNIQUE KEY ` idx_player_slot ` ( ` playerGuid ` , ` slot ` ) ,
KEY ` idx_player ` ( ` playerGuid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `character_void_storage`
--
2012-08-08 18:53:08 +01:00
LOCK TABLES ` character_void_storage ` WRITE ;
2012-08-08 03:42:48 +01:00
/* !40000 ALTER TABLE `character_void_storage` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `character_void_storage` ENABLE KEYS */ ;
UNLOCK TABLES ;
2011-01-19 01:31:08 +01:00
--
-- 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 ` (
2014-10-24 19:56:17 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-01-19 22:46:21 +01:00
` account ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Account Identifier ' ,
2012-09-08 15:28:00 +01:00
` name ` varchar ( 12 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL ,
2012-08-23 18:49:43 +02:00
` slot ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` 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 ' ,
2012-07-24 15:29:59 +01:00
` money ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-01-05 00:03:18 +01:00
` skin ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` face ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` hairStyle ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` hairColor ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` facialStyle ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-01-24 15:56:10 +01:00
` customDisplay1 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` customDisplay2 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` customDisplay3 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-01-05 00:03:18 +01:00
` bankSlots ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` restState ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` 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 ' ,
2011-01-19 22:46:21 +01:00
` map ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Map Identifier ' ,
` instance_id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-01-10 01:35:47 +01:00
` dungeonDifficulty ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
` raidDifficulty ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 14 ' ,
` legacyRaidDifficulty ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 3 ' ,
2011-01-19 01:31:08 +01:00
` orientation ` float NOT NULL DEFAULT ' 0 ' ,
2011-01-19 22:46:21 +01:00
` taximask ` text NOT NULL ,
2011-01-19 01:31:08 +01:00
` online ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` cinematic ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 22:46:21 +01:00
` 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 ' ,
2011-01-19 01:31:08 +01:00
` is_logout_resting ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` rest_bonus ` float NOT NULL DEFAULT ' 0 ' ,
2011-01-19 22:46:21 +01:00
` resettalents_cost ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` resettalents_time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-07-19 16:55:21 +02:00
` primarySpecialization ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` 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 ' ,
2014-10-24 19:56:17 +02:00
` transguid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 22:46:21 +01:00
` 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 ' ,
2011-01-19 01:31:08 +01:00
` taxi_path ` text ,
` 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 ' ,
2011-01-19 22:46:21 +01:00
` watchedFaction ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-08-07 17:45:10 +02:00
` drunk ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` 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 ' ,
2015-07-12 00:41:56 +02:00
` power6 ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 22:46:21 +01:00
` latency ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-11-12 03:58:17 +02:00
` activeTalentGroup ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-08-08 19:37:09 +02:00
` lootSpecId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` exploredZones ` longtext ,
` equipmentCache ` longtext ,
` knownTitles ` longtext ,
` actionBars ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-08-03 09:28:12 -07:00
` grantableLevels ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 22:46:21 +01:00
` deleteInfos_Account ` int ( 10 ) unsigned DEFAULT NULL ,
2011-01-19 01:31:08 +01:00
` deleteInfos_Name ` varchar ( 12 ) DEFAULT NULL ,
2011-01-19 22:46:21 +01:00
` deleteDate ` int ( 10 ) unsigned DEFAULT NULL ,
2011-01-19 01:31:08 +01:00
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 ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `corpse`
--
DROP TABLE IF EXISTS ` corpse ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` corpse ` (
2014-10-24 19:56:17 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Character Global Unique Identifier ' ,
2011-04-11 14:39:00 +06:00
` posX ` float NOT NULL DEFAULT ' 0 ' ,
` posY ` float NOT NULL DEFAULT ' 0 ' ,
` posZ ` float NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` orientation ` float NOT NULL DEFAULT ' 0 ' ,
2011-04-11 14:39:00 +06:00
` mapId ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Map Identifier ' ,
2011-01-19 01:31:08 +01:00
` displayId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2010-07-31 08:58:46 +02:00
` itemCache ` text NOT NULL ,
2011-01-19 01:31:08 +01:00
` bytes1 ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` bytes2 ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 22:46:21 +01:00
` flags ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` dynFlags ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-04-11 14:39:00 +06:00
` corpseType ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` instanceId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Instance Identifier ' ,
2015-02-25 00:13:14 +01:00
PRIMARY KEY ( ` guid ` ) ,
2011-04-13 17:02:06 +06:00
KEY ` idx_type ` ( ` corpseType ` ) ,
2011-04-14 11:31:15 +06:00
KEY ` idx_instance ` ( ` instanceId ` ) ,
KEY ` idx_time ` ( ` time ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Death System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- Dumping data for table `corpse`
--
LOCK TABLES ` corpse ` WRITE ;
/* !40000 ALTER TABLE `corpse` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `corpse` ENABLE KEYS */ ;
UNLOCK TABLES ;
2015-02-25 00:13:14 +01:00
--
-- Table structure for table `corpse_phases`
--
DROP TABLE IF EXISTS ` corpse_phases ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` corpse_phases ` (
2015-07-10 22:28:53 +02:00
` OwnerGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-02-25 00:13:14 +01:00
` PhaseId ` int ( 10 ) unsigned NOT NULL ,
2015-07-10 22:28:53 +02:00
PRIMARY KEY ( ` OwnerGuid ` , ` PhaseId ` )
2015-02-25 00:13:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `corpse_phases`
--
LOCK TABLES ` corpse_phases ` WRITE ;
/* !40000 ALTER TABLE `corpse_phases` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `corpse_phases` ENABLE KEYS */ ;
UNLOCK TABLES ;
2011-01-19 01:31:08 +01:00
--
-- 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 ` (
2014-10-26 02:57:28 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-04-13 17:02:06 +06:00
` respawnTime ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-06-07 23:25:33 +02:00
` mapId ` smallint ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-04-13 17:02:06 +06:00
` instanceId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Instance Identifier ' ,
PRIMARY KEY ( ` guid ` , ` instanceId ` ) ,
2011-04-14 11:31:15 +06:00
KEY ` idx_instance ` ( ` instanceId ` )
2011-01-19 01:31:08 +01:00
) 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 ;
2009-02-22 04:18:30 +01:00
--
-- Table structure for table `game_event_condition_save`
--
DROP TABLE IF EXISTS ` game_event_condition_save ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2009-02-22 04:18:30 +01:00
CREATE TABLE ` game_event_condition_save ` (
2011-03-19 00:23:35 +01:00
` eventEntry ` tinyint ( 3 ) unsigned NOT NULL ,
2011-01-19 22:46:21 +01:00
` condition_id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` done ` float DEFAULT ' 0 ' ,
2011-03-19 00:23:35 +01:00
PRIMARY KEY ( ` eventEntry ` , ` condition_id ` )
2009-02-22 04:18:30 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2009-02-22 04:18:30 +01:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2009-02-22 04:18:30 +01:00
CREATE TABLE ` game_event_save ` (
2011-03-19 00:23:35 +01:00
` eventEntry ` tinyint ( 3 ) unsigned NOT NULL ,
2011-01-19 01:31:08 +01:00
` state ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
2011-01-20 00:08:45 +01:00
` next_start ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-03-19 00:23:35 +01:00
PRIMARY KEY ( ` eventEntry ` )
2009-02-22 04:18:30 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2009-02-22 04:18:30 +01:00
--
-- 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 ;
2010-11-19 15:53:14 +01:00
--
-- 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 ` (
2014-10-26 02:57:28 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier ' ,
2011-04-13 17:02:06 +06:00
` respawnTime ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-06-07 23:25:33 +02:00
` mapId ` smallint ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-04-13 17:02:06 +06:00
` instanceId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Instance Identifier ' ,
PRIMARY KEY ( ` guid ` , ` instanceId ` ) ,
2011-04-14 11:31:15 +06:00
KEY ` idx_instance ` ( ` instanceId ` )
2010-11-19 15:53:14 +01:00
) 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 ;
2011-01-19 01:31:08 +01:00
--
2015-02-08 01:07:00 +01:00
-- Table structure for table `gm_bug`
2011-01-19 01:31:08 +01:00
--
2015-02-08 01:07:00 +01:00
DROP TABLE IF EXISTS ` gm_bug ` ;
2011-01-19 01:31:08 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2015-02-08 01:07:00 +01:00
CREATE TABLE ` gm_bug ` (
2015-03-21 17:09:25 +00:00
` id ` int ( 10 ) unsigned NOT NULL ,
` playerGuid ` bigint ( 20 ) unsigned NOT NULL ,
` note ` 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 ' ,
` facing ` float NOT NULL DEFAULT ' 0 ' ,
` closedBy ` bigint ( 20 ) NOT NULL DEFAULT ' 0 ' ,
` assignedTo ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' GUID of admin to whom ticket is assigned ' ,
` comment ` text NOT NULL ,
2015-02-08 01:07:00 +01:00
PRIMARY KEY ( ` id ` )
2015-03-21 17:09:25 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2011-01-19 01:31:08 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2010-08-29 20:28:14 -07:00
--
2015-02-08 01:07:00 +01:00
-- Dumping data for table `gm_bug`
2010-08-29 20:28:14 -07:00
--
2015-02-08 01:07:00 +01:00
LOCK TABLES ` gm_bug ` WRITE ;
/* !40000 ALTER TABLE `gm_bug` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `gm_bug` ENABLE KEYS */ ;
2010-08-29 20:28:14 -07:00
UNLOCK TABLES ;
--
2015-02-08 01:07:00 +01:00
-- Table structure for table `gm_complaint`
2010-08-29 20:28:14 -07:00
--
2011-01-19 01:31:08 +01:00
2015-02-08 01:07:00 +01:00
DROP TABLE IF EXISTS ` gm_complaint ` ;
2010-08-29 20:28:14 -07:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2015-02-08 01:07:00 +01:00
CREATE TABLE ` gm_complaint ` (
2015-03-21 17:09:25 +00:00
` id ` int ( 10 ) unsigned NOT NULL ,
` playerGuid ` bigint ( 20 ) unsigned NOT NULL ,
` note ` 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 ' ,
` facing ` float NOT NULL DEFAULT ' 0 ' ,
` targetCharacterGuid ` bigint ( 20 ) unsigned NOT NULL ,
` complaintType ` smallint ( 5 ) unsigned NOT NULL ,
` reportLineIndex ` int ( 10 ) NOT NULL ,
` closedBy ` bigint ( 20 ) NOT NULL DEFAULT ' 0 ' ,
` assignedTo ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' GUID of admin to whom ticket is assigned ' ,
` comment ` text NOT NULL ,
2015-02-08 01:07:00 +01:00
PRIMARY KEY ( ` id ` )
2015-03-21 17:09:25 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2015-02-08 01:07:00 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `gm_complaint`
--
LOCK TABLES ` gm_complaint ` WRITE ;
/* !40000 ALTER TABLE `gm_complaint` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `gm_complaint` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `gm_complaint_chatlog`
--
DROP TABLE IF EXISTS ` gm_complaint_chatlog ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` gm_complaint_chatlog ` (
2015-03-21 17:09:25 +00:00
` complaintId ` int ( 10 ) unsigned NOT NULL ,
` lineId ` int ( 10 ) unsigned NOT NULL ,
` timestamp ` int ( 10 ) unsigned NOT NULL ,
` text ` text NOT NULL ,
PRIMARY KEY ( ` complaintId ` , ` lineId ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2015-02-08 01:07:00 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `gm_complaint_chatlog`
--
LOCK TABLES ` gm_complaint_chatlog ` WRITE ;
/* !40000 ALTER TABLE `gm_complaint_chatlog` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `gm_complaint_chatlog` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `gm_suggestion`
--
2015-03-21 17:09:25 +00:00
2015-02-08 01:07:00 +01:00
DROP TABLE IF EXISTS ` gm_suggestion ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` gm_suggestion ` (
2015-03-21 17:09:25 +00:00
` id ` int ( 10 ) unsigned NOT NULL ,
` playerGuid ` bigint ( 20 ) unsigned NOT NULL ,
` note ` 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 ' ,
` facing ` float NOT NULL DEFAULT ' 0 ' ,
` closedBy ` bigint ( 20 ) NOT NULL DEFAULT ' 0 ' ,
` assignedTo ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' GUID of admin to whom ticket is assigned ' ,
` comment ` text NOT NULL ,
2015-02-08 01:07:00 +01:00
PRIMARY KEY ( ` id ` )
2015-03-21 17:09:25 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2015-02-08 01:07:00 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `gm_suggestion`
--
LOCK TABLES ` gm_suggestion ` WRITE ;
/* !40000 ALTER TABLE `gm_suggestion` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `gm_suggestion` ENABLE KEYS */ ;
UNLOCK TABLES ;
2009-02-22 04:18:30 +01:00
--
-- Table structure for table `group_instance`
--
2008-10-11 14:16:25 -05:00
DROP TABLE IF EXISTS ` group_instance ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` group_instance ` (
2011-01-20 00:08:45 +01:00
` guid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` instance ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` permanent ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` instance ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` instance ` ( ` instance ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` group_member ` (
2011-01-20 00:08:45 +01:00
` guid ` int ( 10 ) unsigned NOT NULL ,
2014-10-25 15:04:38 +02:00
` memberGuid ` bigint ( 20 ) unsigned NOT NULL ,
2011-01-19 01:31:08 +01:00
` 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 ` )
2011-01-20 00:08:45 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Groups ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2010-02-01 18:52:42 +01:00
--
-- 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 ` (
2011-01-20 00:08:45 +01:00
` guid ` int ( 10 ) unsigned NOT NULL ,
2014-10-25 15:04:38 +02:00
` leaderGuid ` bigint ( 20 ) unsigned NOT NULL ,
2011-01-20 00:08:45 +01:00
` lootMethod ` tinyint ( 3 ) unsigned NOT NULL ,
2014-10-25 15:04:38 +02:00
` looterGuid ` bigint ( 20 ) unsigned NOT NULL ,
2011-01-20 00:08:45 +01:00
` lootThreshold ` tinyint ( 3 ) unsigned NOT NULL ,
2014-10-23 17:01:26 +02:00
` icon1 ` binary ( 16 ) NOT NULL ,
` icon2 ` binary ( 16 ) NOT NULL ,
` icon3 ` binary ( 16 ) NOT NULL ,
` icon4 ` binary ( 16 ) NOT NULL ,
` icon5 ` binary ( 16 ) NOT NULL ,
` icon6 ` binary ( 16 ) NOT NULL ,
` icon7 ` binary ( 16 ) NOT NULL ,
` icon8 ` binary ( 16 ) NOT NULL ,
2011-01-20 00:08:45 +01:00
` groupType ` tinyint ( 3 ) unsigned NOT NULL ,
2015-01-10 01:35:47 +01:00
` difficulty ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
` raidDifficulty ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 14 ' ,
` legacyRaidDifficulty ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 3 ' ,
2014-10-25 15:04:38 +02:00
` masterLooterGuid ` bigint ( 20 ) unsigned NOT NULL ,
2010-09-06 01:38:50 +03:00
PRIMARY KEY ( ` guid ` ) ,
KEY ` leaderGuid ` ( ` leaderGuid ` )
2011-01-20 00:08:45 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Groups ' ;
2010-02-01 18:52:42 +01:00
/* !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 ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `guild`
--
DROP TABLE IF EXISTS ` guild ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` guild ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 00:08:45 +01:00
` name ` varchar ( 24 ) NOT NULL DEFAULT ' ' ,
2014-10-25 15:04:38 +02:00
` leaderguid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 00:08:45 +01:00
` 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 ' ,
2014-01-31 04:34:32 +00:00
` info ` varchar ( 500 ) NOT NULL DEFAULT ' ' ,
2011-01-20 00:08:45 +01:00
` motd ` varchar ( 128 ) NOT NULL DEFAULT ' ' ,
` createdate ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` BankMoney ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-09-07 14:39:19 +02:00
` level ` int ( 10 ) unsigned DEFAULT ' 1 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guildid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Guild System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- Dumping data for table `guild`
--
LOCK TABLES ` guild ` WRITE ;
/* !40000 ALTER TABLE `guild` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `guild` ENABLE KEYS */ ;
UNLOCK TABLES ;
2012-07-09 11:08:33 +02:00
--
-- Table structure for table `guild_achievement`
--
DROP TABLE IF EXISTS ` guild_achievement ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` guild_achievement ` (
2014-10-25 15:04:38 +02:00
` guildId ` bigint ( 20 ) unsigned NOT NULL ,
2016-05-07 01:16:29 +02:00
` achievement ` int ( 10 ) unsigned NOT NULL ,
2012-07-09 11:08:33 +02:00
` date ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` guids ` text NOT NULL ,
PRIMARY KEY ( ` guildId ` , ` achievement ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `guild_achievement`
--
LOCK TABLES ` guild_achievement ` WRITE ;
/* !40000 ALTER TABLE `guild_achievement` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `guild_achievement` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `guild_achievement_progress`
--
DROP TABLE IF EXISTS ` guild_achievement_progress ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` guild_achievement_progress ` (
2014-10-25 15:04:38 +02:00
` guildId ` bigint ( 20 ) unsigned NOT NULL ,
2014-12-31 18:00:35 +01:00
` criteria ` int ( 10 ) unsigned NOT NULL ,
2013-06-20 14:28:32 +02:00
` counter ` bigint ( 20 ) unsigned NOT NULL ,
2012-07-09 11:08:33 +02:00
` date ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-25 15:04:38 +02:00
` completedGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-07-09 11:08:33 +02:00
PRIMARY KEY ( ` guildId ` , ` criteria ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `guild_achievement_progress`
--
LOCK TABLES ` guild_achievement_progress ` WRITE ;
/* !40000 ALTER TABLE `guild_achievement_progress` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `guild_achievement_progress` ENABLE KEYS */ ;
UNLOCK TABLES ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `guild_bank_eventlog`
--
DROP TABLE IF EXISTS ` guild_bank_eventlog ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` guild_bank_eventlog ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Guild Identificator ' ,
2011-01-20 00:08:45 +01:00
` LogGuid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Log record identificator - auxiliary column ' ,
2011-01-19 01:31:08 +01:00
` TabId ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Guild bank TabId ' ,
` EventType ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Event type ' ,
2014-10-25 15:04:38 +02:00
` PlayerGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` ItemOrMoney ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 00:08:45 +01:00
` 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 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guildid ` , ` LogGuid ` , ` TabId ` ) ,
KEY ` guildid_key ` ( ` guildid ` ) ,
KEY ` Idx_PlayerGuid ` ( ` PlayerGuid ` ) ,
KEY ` Idx_LogGuid ` ( ` LogGuid ` )
2008-10-11 14:16:25 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` guild_bank_item ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 01:02:24 +01:00
` TabId ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` SlotId ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-25 15:04:38 +02:00
` item_guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guildid ` , ` TabId ` , ` SlotId ` ) ,
KEY ` guildid_key ` ( ` guildid ` ) ,
KEY ` Idx_item_guid ` ( ` item_guid ` )
2008-10-11 14:16:25 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` guild_bank_right ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 01:02:24 +01:00
` TabId ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` rid ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-02-13 18:31:50 +00:00
` gbright ` tinyint ( 3 ) NOT NULL DEFAULT ' 0 ' ,
` SlotPerDay ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guildid ` , ` TabId ` , ` rid ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` guildid_key ` ( ` guildid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` guild_bank_tab ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 01:02:24 +01:00
` TabId ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` TabName ` varchar ( 16 ) NOT NULL DEFAULT ' ' ,
2011-01-19 01:31:08 +01:00
` TabIcon ` varchar ( 100 ) NOT NULL DEFAULT ' ' ,
2011-01-20 01:02:24 +01:00
` TabText ` varchar ( 500 ) DEFAULT NULL ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guildid ` , ` TabId ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` guildid_key ` ( ` guildid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` guild_eventlog ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL COMMENT ' Guild Identificator ' ,
2011-01-20 01:02:24 +01:00
` LogGuid ` int ( 10 ) unsigned NOT NULL COMMENT ' Log record identificator - auxiliary column ' ,
` EventType ` tinyint ( 3 ) unsigned NOT NULL COMMENT ' Event type ' ,
2014-10-25 15:04:38 +02:00
` PlayerGuid1 ` bigint ( 20 ) unsigned NOT NULL COMMENT ' Player 1 ' ,
` PlayerGuid2 ` bigint ( 20 ) unsigned NOT NULL COMMENT ' Player 2 ' ,
2011-01-20 01:02:24 +01:00
` NewRank ` tinyint ( 3 ) unsigned NOT NULL COMMENT ' New rank(in case promotion/demotion) ' ,
` TimeStamp ` int ( 10 ) unsigned NOT NULL COMMENT ' Event UNIX time ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guildid ` , ` LogGuid ` ) ,
KEY ` Idx_PlayerGuid1 ` ( ` PlayerGuid1 ` ) ,
KEY ` Idx_PlayerGuid2 ` ( ` PlayerGuid2 ` ) ,
KEY ` Idx_LogGuid ` ( ` LogGuid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Guild Eventlog ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2012-09-10 11:56:37 +01:00
--
-- Table structure for table `guild_finder_applicant`
--
2012-09-09 11:32:14 +02:00
DROP TABLE IF EXISTS ` guild_finder_applicant ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` guild_finder_applicant ` (
2015-01-27 22:43:45 +00:00
` guildId ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` playerGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-09-09 11:32:14 +02:00
` availability ` tinyint ( 3 ) unsigned DEFAULT ' 0 ' ,
` classRole ` tinyint ( 3 ) unsigned DEFAULT ' 0 ' ,
` interests ` tinyint ( 3 ) unsigned DEFAULT ' 0 ' ,
` comment ` varchar ( 255 ) DEFAULT NULL ,
` submitTime ` int ( 10 ) unsigned DEFAULT NULL ,
2015-01-27 22:43:45 +00:00
PRIMARY KEY ( ` guildId ` , ` playerGuid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-09-09 11:32:14 +02:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2012-09-10 11:56:37 +01:00
--
-- Dumping data for table `guild_finder_applicant`
--
LOCK TABLES ` guild_finder_applicant ` WRITE ;
/* !40000 ALTER TABLE `guild_finder_applicant` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `guild_finder_applicant` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `guild_finder_guild_settings`
--
2012-09-09 11:32:14 +02:00
DROP TABLE IF EXISTS ` guild_finder_guild_settings ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` guild_finder_guild_settings ` (
2014-10-25 15:04:38 +02:00
` guildId ` bigint ( 20 ) unsigned NOT NULL ,
2012-09-09 11:32:14 +02:00
` availability ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` classRoles ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` interests ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` level ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
` listed ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` comment ` varchar ( 255 ) DEFAULT NULL ,
PRIMARY KEY ( ` guildId ` )
2015-01-27 22:43:45 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-09-09 11:32:14 +02:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2012-09-10 11:56:37 +01:00
--
-- Dumping data for table `guild_finder_guild_settings`
--
LOCK TABLES ` guild_finder_guild_settings ` WRITE ;
/* !40000 ALTER TABLE `guild_finder_guild_settings` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `guild_finder_guild_settings` ENABLE KEYS */ ;
UNLOCK TABLES ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `guild_member`
--
DROP TABLE IF EXISTS ` guild_member ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` guild_member ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL COMMENT ' Guild Identificator ' ,
` guid ` bigint ( 20 ) unsigned NOT NULL ,
2011-01-20 01:02:24 +01:00
` rank ` tinyint ( 3 ) unsigned NOT NULL ,
` pnote ` varchar ( 31 ) NOT NULL DEFAULT ' ' ,
` offnote ` varchar ( 31 ) NOT NULL DEFAULT ' ' ,
2011-01-19 01:31:08 +01:00
UNIQUE KEY ` guid_key ` ( ` guid ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` guildid_key ` ( ` guildid ` ) ,
2011-01-19 01:31:08 +01:00
KEY ` guildid_rank_key ` ( ` guildid ` , ` rank ` )
2011-01-20 01:02:24 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Guild System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2012-11-07 09:18:42 +01:00
--
-- 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 */ ;
2013-02-04 16:22:43 +00:00
CREATE TABLE ` guild_member_withdraw ` (
2014-10-25 15:04:38 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL ,
2012-11-07 09:18:42 +01:00
` 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 ' ,
2012-11-08 11:25:38 +01:00
` tab6 ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` tab7 ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-11-07 09:18:42 +01:00
` 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 */ ;
2008-10-11 14:16:25 -05:00
UNLOCK TABLES ;
2012-09-10 00:41:35 +01:00
--
2015-01-27 22:43:45 +00:00
-- Table structure for table `guild_newslog`
2012-09-10 00:41:35 +01:00
--
2012-11-08 11:25:38 +01:00
DROP TABLE IF EXISTS ` guild_newslog ` ;
2012-09-10 00:41:35 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2012-11-09 09:03:29 +01:00
CREATE TABLE ` guild_newslog ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Guild Identificator ' ,
2012-11-08 11:25:38 +01:00
` LogGuid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Log record identificator - auxiliary column ' ,
` EventType ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Event type ' ,
2014-10-25 15:04:38 +02:00
` PlayerGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-11-08 11:25:38 +01:00
` Flags ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` Value ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` TimeStamp ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Event UNIX time ' ,
2012-11-09 09:03:29 +01:00
PRIMARY KEY ( ` guildid ` , ` LogGuid ` ) ,
2012-11-08 11:25:38 +01:00
KEY ` guildid_key ` ( ` guildid ` ) ,
KEY ` Idx_PlayerGuid ` ( ` PlayerGuid ` ) ,
KEY ` Idx_LogGuid ` ( ` LogGuid ` )
2012-09-10 00:41:35 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
2012-11-08 11:25:38 +01:00
-- Dumping data for table `guild_newslog`
2012-09-10 00:41:35 +01:00
--
2012-11-08 11:25:38 +01:00
LOCK TABLES ` guild_newslog ` WRITE ;
/* !40000 ALTER TABLE `guild_newslog` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `guild_newslog` ENABLE KEYS */ ;
2012-11-09 09:03:29 +01:00
UNLOCK TABLES ;
2012-09-10 00:41:35 +01:00
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `guild_rank`
--
DROP TABLE IF EXISTS ` guild_rank ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` guild_rank ` (
2014-10-25 15:04:38 +02:00
` guildid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 01:02:24 +01:00
` rid ` tinyint ( 3 ) unsigned NOT NULL ,
2011-05-06 00:32:26 -04:00
` rname ` varchar ( 20 ) NOT NULL DEFAULT ' ' ,
2011-01-20 01:02:24 +01:00
` rights ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` BankMoneyPerDay ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guildid ` , ` rid ` ) ,
KEY ` Idx_rid ` ( ` rid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Guild System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` instance ` (
2011-01-20 01:02:24 +01:00
` 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 ' ,
2011-02-03 22:20:40 +01:00
` completedEncounters ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 01:02:24 +01:00
` data ` tinytext NOT NULL ,
2016-07-16 14:58:33 +02:00
` entranceId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` id ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` map ` ( ` map ` ) ,
2010-09-06 01:38:50 +03:00
KEY ` resettime ` ( ` resettime ` ) ,
KEY ` difficulty ` ( ` difficulty ` )
2008-10-11 14:16:25 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- Dumping data for table `instance`
--
LOCK TABLES ` instance ` WRITE ;
/* !40000 ALTER TABLE `instance` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `instance` ENABLE KEYS */ ;
UNLOCK TABLES ;
2009-02-22 04:18:30 +01:00
--
-- Table structure for table `instance_reset`
--
2008-10-11 14:16:25 -05:00
DROP TABLE IF EXISTS ` instance_reset ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` instance_reset ` (
2011-01-20 01:02:24 +01:00
` mapid ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` difficulty ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` resettime ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2010-09-06 01:38:50 +03:00
PRIMARY KEY ( ` mapid ` , ` difficulty ` ) ,
KEY ` difficulty ` ( ` difficulty ` )
2008-10-11 14:16:25 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- Dumping data for table `instance_reset`
--
LOCK TABLES ` instance_reset ` WRITE ;
/* !40000 ALTER TABLE `instance_reset` DISABLE KEYS */ ;
2015-03-21 17:09:25 +00:00
INSERT INTO ` instance_reset ` VALUES ( 33 , 2 , 1426996800 ) , ( 36 , 2 , 1426996800 ) , ( 249 , 3 , 1427515200 ) , ( 249 , 4 , 1427515200 ) , ( 269 , 2 , 1426996800 ) , ( 409 , 9 , 1427515200 ) , ( 469 , 9 , 1427515200 ) , ( 509 , 3 , 1427169600 ) , ( 531 , 9 , 1427515200 ) , ( 532 , 3 , 1427515200 ) , ( 533 , 3 , 1427515200 ) , ( 533 , 4 , 1427515200 ) , ( 534 , 4 , 1427515200 ) , ( 540 , 2 , 1426996800 ) , ( 542 , 2 , 1426996800 ) , ( 543 , 2 , 1426996800 ) , ( 544 , 4 , 1427515200 ) , ( 545 , 2 , 1426996800 ) , ( 546 , 2 , 1426996800 ) , ( 547 , 2 , 1426996800 ) , ( 548 , 4 , 1427515200 ) , ( 550 , 4 , 1427515200 ) , ( 552 , 2 , 1426996800 ) , ( 553 , 2 , 1426996800 ) , ( 554 , 2 , 1426996800 ) , ( 555 , 2 , 1426996800 ) , ( 556 , 2 , 1426996800 ) , ( 557 , 2 , 1426996800 ) , ( 558 , 2 , 1426996800 ) , ( 560 , 2 , 1426996800 ) , ( 564 , 4 , 1427515200 ) , ( 565 , 4 , 1427515200 ) , ( 568 , 2 , 1426996800 ) , ( 574 , 2 , 1426996800 ) , ( 575 , 2 , 1426996800 ) , ( 576 , 2 , 1426996800 ) , ( 578 , 2 , 1426996800 ) , ( 580 , 4 , 1427515200 ) , ( 585 , 2 , 1426996800 ) , ( 595 , 2 , 1426996800 ) , ( 598 , 2 , 1426996800 ) , ( 599 , 2 , 1426996800 ) , ( 600 , 2 , 1426996800 ) , ( 601 , 2 , 1426996800 ) , ( 602 , 2 , 1426996800 ) , ( 603 , 3 , 1427515200 ) , ( 603 , 4 , 1427515200 ) , ( 604 , 2 , 1426996800 ) , ( 608 , 2 , 1426996800 ) , ( 615 , 3 , 1427515200 ) , ( 615 , 4 , 1427515200 ) , ( 616 , 3 , 1427515200 ) , ( 616 , 4 , 1427515200 ) , ( 619 , 2 , 1426996800 ) , ( 624 , 3 , 1427515200 ) , ( 624 , 4 , 1427515200 ) , ( 631 , 3 , 1427515200 ) , ( 631 , 4 , 1427515200 ) , ( 631 , 5 , 1427515200 ) , ( 631 , 6 , 1427515200 ) , ( 632 , 2 , 1426996800 ) , ( 643 , 2 , 1426996800 ) , ( 644 , 2 , 1426996800 ) , ( 645 , 2 , 1426996800 ) , ( 649 , 3 , 1427515200 ) , ( 649 , 4 , 1427515200 ) , ( 649 , 5 , 1427515200 ) , ( 649 , 6 , 1427515200 ) , ( 650 , 2 , 1426996800 ) , ( 657 , 2 , 1426996800 ) , ( 658 , 2 , 1426996800 ) , ( 668 , 2 , 1426996800 ) , ( 669 , 3 , 1427515200 ) , ( 669 , 4 , 1427515200 ) , ( 669 , 5 , 1427515200 ) , ( 669 , 6 , 1427515200 ) , ( 670 , 2 , 1426996800 ) , ( 671 , 3 , 1427515200 ) , ( 671 , 4 , 1427515200 ) , ( 671 , 5 , 1427515200 ) , ( 671 , 6 , 1427515200 ) , ( 720 , 3 , 1427515200 ) , ( 720 , 4 , 1427515200 ) , ( 720 , 5 , 1427515200 ) , ( 720 , 6 , 1427515200 ) , ( 724 , 3 , 1427515200 ) , ( 724 , 4 , 1427515200 ) , ( 724 , 5 , 1427515200 ) , ( 724 , 6 , 1427515200 ) , ( 725 , 2 , 1426996800 ) , ( 754 , 3 , 1427515200 ) , ( 754 , 4 , 1427515200 ) , ( 754 , 5 , 1427515200 ) , ( 754 , 6 , 1427515200 ) , ( 755 , 2 , 1426996800 ) , ( 757 , 3 , 1427515200 ) , ( 757 , 4 , 1427515200 ) , ( 757 , 5 , 1427515200 ) , ( 757 , 6 , 1427515200 ) , ( 859 , 2 , 1426996800 ) , ( 938 , 2 , 1426996800 ) , ( 939 , 2 , 1426996800 ) , ( 940 , 2 , 1426996800 ) , ( 959 , 2 , 1426996800 ) , ( 960 , 2 , 1426996800 ) , ( 961 , 2 , 1426996800 ) , ( 962 , 2 , 1426996800 ) , ( 967 , 3 , 1427515200 ) , ( 967 , 4 , 1427515200 ) , ( 967 , 5 , 1427515200 ) , ( 967 , 6 , 1427515200 ) , ( 994 , 2 , 1426996800 ) , ( 996 , 3 , 1427515200 ) , ( 996 , 4 , 1427515200 ) , ( 996 , 5 , 1427515200 ) , ( 996 , 6 , 1427515200 ) , ( 1001 , 2 , 1426996800 ) , ( 1004 , 2 , 1426996800 ) , ( 1007 , 2 , 1426996800 ) , ( 1008 , 3 , 1427515200 ) , ( 1008 , 4 , 1427515200 ) , ( 1008 , 5 , 1427515200 ) , ( 1008 , 6 , 1427515200 ) , ( 1009 , 3 , 1427515200 ) , ( 1009 , 4 , 1427515200 ) , ( 1009 , 5 , 1427515200 ) , ( 1009 , 6 , 1427515200 ) , ( 1011 , 2 , 1426996800 ) , ( 1098 , 3 , 1427515200 ) , ( 1098 , 4 , 1427515200 ) , ( 1098 , 5 , 1427515200 ) , ( 1098 , 6 , 1427515200 ) , ( 1136 , 14 , 1427515200 ) , ( 1136 , 15 , 1427515200 ) , ( 1136 , 16 , 1427515200 ) , ( 1175 , 2 , 1426996800 ) , ( 1176 , 2 , 1426996800 ) , ( 1182 , 2 , 1426996800 ) , ( 1195 , 2 , 1426996800 ) , ( 1205 , 14 , 1427515200 ) , ( 1205 , 15 , 1427515200 ) , ( 1205 , 16 , 1427515200 ) , ( 1208 , 2 , 1426996800 ) , ( 1209 , 2 , 1426996800 ) , ( 1228 , 14 , 1427515200 ) , ( 1228 , 15 , 1427515200 ) , ( 1228 , 16 , 1427515200 ) , ( 1279 , 2 , 1426996800 ) , ( 1358 , 2 , 1426996800 ) ;
2008-10-11 14:16:25 -05:00
/* !40000 ALTER TABLE `instance_reset` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `item_instance`
--
DROP TABLE IF EXISTS ` item_instance ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` item_instance ` (
2014-10-26 02:57:28 +02:00
` guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` itemEntry ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-26 02:57:28 +02:00
` owner_guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` creatorGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` giftCreatorGuid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` count ` int ( 10 ) unsigned NOT NULL DEFAULT ' 1 ' ,
2011-01-20 01:02:24 +01:00
` duration ` int ( 10 ) NOT NULL DEFAULT ' 0 ' ,
` charges ` tinytext ,
` flags ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2010-07-30 13:15:31 +02:00
` enchantments ` text NOT NULL ,
2011-01-20 01:02:24 +01:00
` randomPropertyId ` smallint ( 5 ) NOT NULL DEFAULT ' 0 ' ,
` durability ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` playedTime ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 01:02:24 +01:00
` text ` text ,
2014-12-23 00:25:43 +01:00
` transmogrification ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` upgradeId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` enchantIllusion ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-09-09 14:52:32 +02:00
` battlePetSpeciesId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` battlePetBreedData ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` battlePetLevel ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` battlePetDisplayId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-12-23 00:25:43 +01:00
` bonusListIDs ` text ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` idx_owner_guid ` ( ` owner_guid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Item System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2016-08-15 00:03:38 +02:00
--
-- Table structure for table `item_instance_artifact`
--
DROP TABLE IF EXISTS ` item_instance_artifact ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` item_instance_artifact ` (
` itemGuid ` bigint ( 20 ) unsigned NOT NULL ,
` xp ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` artifactAppearanceId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` itemGuid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `item_instance_artifact`
--
LOCK TABLES ` item_instance_artifact ` WRITE ;
/* !40000 ALTER TABLE `item_instance_artifact` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `item_instance_artifact` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `item_instance_artifact_powers`
--
DROP TABLE IF EXISTS ` item_instance_artifact_powers ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` item_instance_artifact_powers ` (
` itemGuid ` bigint ( 20 ) unsigned NOT NULL ,
` artifactPowerId ` int ( 10 ) unsigned NOT NULL ,
` purchasedRank ` tinyint ( 3 ) unsigned DEFAULT ' 0 ' ,
PRIMARY KEY ( ` itemGuid ` , ` artifactPowerId ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `item_instance_artifact_powers`
--
LOCK TABLES ` item_instance_artifact_powers ` WRITE ;
/* !40000 ALTER TABLE `item_instance_artifact_powers` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `item_instance_artifact_powers` ENABLE KEYS */ ;
UNLOCK TABLES ;
2016-01-24 15:56:10 +01:00
--
-- Table structure for table `item_instance_gems`
--
DROP TABLE IF EXISTS ` item_instance_gems ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` item_instance_gems ` (
` itemGuid ` bigint ( 20 ) unsigned NOT NULL ,
` gemItemId1 ` int ( 10 ) unsigned DEFAULT NULL ,
2016-10-16 17:38:56 +01:00
` gemBonuses1 ` text ,
2016-07-19 16:55:21 +02:00
` gemContext1 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-01-24 15:56:10 +01:00
` gemItemId2 ` int ( 10 ) unsigned DEFAULT NULL ,
2016-10-16 17:38:56 +01:00
` gemBonuses2 ` text ,
2016-07-19 16:55:21 +02:00
` gemContext2 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-01-24 15:56:10 +01:00
` gemItemId3 ` int ( 10 ) unsigned DEFAULT NULL ,
2016-10-16 17:38:56 +01:00
` gemBonuses3 ` text ,
2016-07-19 16:55:21 +02:00
` gemContext3 ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2016-01-24 15:56:10 +01:00
PRIMARY KEY ( ` itemGuid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `item_instance_gems`
--
LOCK TABLES ` item_instance_gems ` WRITE ;
/* !40000 ALTER TABLE `item_instance_gems` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `item_instance_gems` ENABLE KEYS */ ;
UNLOCK TABLES ;
2016-10-16 17:38:56 +01:00
--
2016-08-15 00:03:38 +02:00
-- Table structure for table `item_instance_modifiers`
--
DROP TABLE IF EXISTS ` item_instance_modifiers ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` item_instance_modifiers ` (
` itemGuid ` bigint ( 20 ) unsigned NOT NULL ,
` fixedScalingLevel ` int ( 10 ) unsigned DEFAULT ' 0 ' ,
` artifactKnowledgeLevel ` int ( 10 ) unsigned DEFAULT ' 0 ' ,
PRIMARY KEY ( ` itemGuid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `item_instance_modifiers`
--
LOCK TABLES ` item_instance_modifiers ` WRITE ;
/* !40000 ALTER TABLE `item_instance_modifiers` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `item_instance_modifiers` ENABLE KEYS */ ;
UNLOCK TABLES ;
2016-07-19 16:55:21 +02:00
--
-- Table structure for table `item_instance_transmog`
--
DROP TABLE IF EXISTS ` item_instance_transmog ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` item_instance_transmog ` (
` itemGuid ` bigint ( 20 ) unsigned NOT NULL ,
` itemModifiedAppearanceAllSpecs ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` itemModifiedAppearanceSpec1 ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` itemModifiedAppearanceSpec2 ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` itemModifiedAppearanceSpec3 ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` itemModifiedAppearanceSpec4 ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` spellItemEnchantmentAllSpecs ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` spellItemEnchantmentSpec1 ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` spellItemEnchantmentSpec2 ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` spellItemEnchantmentSpec3 ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` spellItemEnchantmentSpec4 ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` itemGuid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `item_instance_transmog`
--
LOCK TABLES ` item_instance_transmog ` WRITE ;
/* !40000 ALTER TABLE `item_instance_transmog` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `item_instance_transmog` ENABLE KEYS */ ;
UNLOCK TABLES ;
2012-12-14 00:46:36 -05:00
--
-- 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 ` (
2014-10-26 02:57:28 +02:00
` container_id ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' guid of container (item_instance.guid) ' ,
2012-12-14 00:46:36 -05:00
` 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 ' ,
2015-01-27 22:43:45 +00:00
` rnd_suffix ` int ( 10 ) NOT NULL DEFAULT ' 0 ' COMMENT ' random suffix added when originally rolled ' ,
PRIMARY KEY ( ` container_id ` , ` item_id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-14 00:46:36 -05:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2013-02-04 16:22:43 +00:00
--
-- 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 ;
2012-12-14 00:46:36 -05:00
--
-- 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 ` (
2014-10-26 02:57:28 +02:00
` container_id ` bigint ( 20 ) NOT NULL DEFAULT ' 0 ' COMMENT ' guid of container (item_instance.guid) ' ,
2015-01-27 22:43:45 +00:00
` money ` int ( 10 ) NOT NULL DEFAULT ' 0 ' COMMENT ' money loot (in copper) ' ,
PRIMARY KEY ( ` container_id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-14 00:46:36 -05:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2013-02-04 16:22:43 +00:00
--
-- 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 ;
2010-03-18 22:56:48 +01:00
--
-- 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 */ ;
2010-05-12 20:18:04 +02:00
CREATE TABLE ` item_refund_instance ` (
2014-10-26 02:57:28 +02:00
` item_guid ` bigint ( 20 ) unsigned NOT NULL COMMENT ' Item GUID ' ,
` player_guid ` bigint ( 20 ) unsigned NOT NULL COMMENT ' Player GUID ' ,
2011-01-20 01:02:24 +01:00
` paidMoney ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` paidExtendedCost ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2010-05-12 20:18:04 +02:00
PRIMARY KEY ( ` item_guid ` , ` player_guid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Item Refund System ' ;
2010-03-18 22:56:48 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2010-03-19 14:21:21 +01:00
--
-- 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 ;
2008-10-11 14:16:25 -05:00
2010-09-21 21:55:16 +02:00
--
-- 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 ` (
2014-10-26 02:57:28 +02:00
` itemGuid ` bigint ( 20 ) unsigned NOT NULL COMMENT ' Item GUID ' ,
2010-09-21 21:55:16 +02:00
` allowedPlayers ` text NOT NULL COMMENT ' Space separated GUID list of players who can receive this item in trade ' ,
PRIMARY KEY ( ` itemGuid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Item Refund System ' ;
2010-09-21 21:55:16 +02:00
/* !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 ;
2012-01-19 17:42:43 +00:00
--
-- 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 ` (
2012-02-19 13:51:16 +01:00
` 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 ' ,
2012-01-19 17:42:43 +00:00
PRIMARY KEY ( ` guid ` )
2012-02-19 13:51:16 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' LFG Data ' ;
2012-01-19 17:42:43 +00:00
/* !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 ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `mail`
--
DROP TABLE IF EXISTS ` mail ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` mail ` (
2011-01-20 02:11:49 +01:00
` id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Identifier ' ,
2011-01-19 01:31:08 +01:00
` messageType ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` stationery ` tinyint ( 3 ) NOT NULL DEFAULT ' 41 ' ,
2011-01-20 02:11:49 +01:00
` mailTemplateId ` smallint ( 5 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-26 02:57:28 +02:00
` sender ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Character Global Unique Identifier ' ,
` receiver ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Character Global Unique Identifier ' ,
2008-10-11 14:16:25 -05:00
` subject ` longtext ,
2010-04-11 11:35:46 +04:00
` body ` longtext ,
2011-01-19 01:31:08 +01:00
` has_items ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 02:11:49 +01:00
` expire_time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` deliver_time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2012-07-24 15:29:59 +01:00
` money ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` cod ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
` checked ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
2008-10-11 14:16:25 -05:00
KEY ` idx_receiver ` ( ` receiver ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Mail System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` mail_items ` (
2011-01-20 02:11:49 +01:00
` mail_id ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-26 02:57:28 +02:00
` item_guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` receiver ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Character Global Unique Identifier ' ,
2011-05-29 00:32:18 +02:00
PRIMARY KEY ( ` item_guid ` ) ,
KEY ` idx_receiver ` ( ` receiver ` ) ,
KEY ` idx_mail_id ` ( ` mail_id ` )
2015-05-04 12:39:36 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` pet_aura ` (
2015-01-16 23:32:41 +01:00
` guid ` int ( 10 ) unsigned NOT NULL COMMENT ' Global Unique Identifier ' ,
` casterGuid ` binary ( 16 ) NOT NULL COMMENT ' Full Global Unique Identifier ' ,
` spell ` int ( 10 ) unsigned NOT NULL ,
` effectMask ` int ( 10 ) unsigned NOT NULL ,
2015-01-27 22:43:45 +00:00
` recalculateMask ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` stackCount ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 1 ' ,
` maxDuration ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` remainTime ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` remainCharges ` tinyint ( 3 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-01-16 23:32:41 +01:00
PRIMARY KEY ( ` guid ` , ` spell ` , ` effectMask ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Pet System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2015-01-16 23:32:41 +01:00
--
-- Table structure for table `pet_aura_effect`
--
DROP TABLE IF EXISTS ` pet_aura_effect ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` pet_aura_effect ` (
` guid ` int ( 10 ) unsigned NOT NULL COMMENT ' Global Unique Identifier ' ,
2015-01-27 22:43:45 +00:00
` casterGuid ` binary ( 16 ) NOT NULL COMMENT ' Full Global Unique Identifier ' ,
2015-01-16 23:32:41 +01:00
` spell ` int ( 10 ) unsigned NOT NULL ,
` effectMask ` int ( 10 ) unsigned NOT NULL ,
` effectIndex ` tinyint ( 3 ) unsigned NOT NULL ,
2015-01-27 22:43:45 +00:00
` amount ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
` baseAmount ` int ( 11 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` guid ` , ` casterGuid ` , ` spell ` , ` effectMask ` , ` effectIndex ` )
2015-01-16 23:32:41 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Pet System ' ;
2015-01-27 22:43:45 +00:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2015-01-16 23:32:41 +01:00
--
-- Dumping data for table `pet_aura_effect`
--
LOCK TABLES ` pet_aura_effect ` WRITE ;
/* !40000 ALTER TABLE `pet_aura_effect` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `pet_aura_effect` ENABLE KEYS */ ;
UNLOCK TABLES ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `pet_spell`
--
DROP TABLE IF EXISTS ` pet_spell ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` pet_spell ` (
2011-01-20 02:11:49 +01:00
` 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 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` spell ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Pet System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2015-02-17 01:01:44 +01:00
--
-- Table structure for table `pet_spell_charges`
--
DROP TABLE IF EXISTS ` pet_spell_charges ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` pet_spell_charges ` (
` guid ` int ( 10 ) unsigned NOT NULL ,
` categoryId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' SpellCategory.dbc Identifier ' ,
` rechargeStart ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` rechargeEnd ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
KEY ` idx_guid ` ( ` guid ` ) USING BTREE
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `pet_spell_charges`
--
LOCK TABLES ` pet_spell_charges ` WRITE ;
/* !40000 ALTER TABLE `pet_spell_charges` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `pet_spell_charges` ENABLE KEYS */ ;
UNLOCK TABLES ;
2008-10-11 14:16:25 -05:00
--
-- Table structure for table `pet_spell_cooldown`
--
DROP TABLE IF EXISTS ` pet_spell_cooldown ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` pet_spell_cooldown ` (
2011-01-20 02:11:49 +01:00
` guid ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Global Unique Identifier, Low part ' ,
2015-02-17 01:01:44 +01:00
` spell ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Spell Identifier ' ,
2011-01-20 02:11:49 +01:00
` time ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2015-09-10 19:39:30 +02:00
` categoryId ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' Spell category Id ' ,
2015-09-10 20:04:24 +02:00
` categoryEnd ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` guid ` , ` spell ` )
2008-10-11 14:16:25 -05:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` petition ` (
2014-10-26 02:57:28 +02:00
` ownerguid ` bigint ( 20 ) unsigned NOT NULL ,
` petitionguid ` bigint ( 20 ) unsigned DEFAULT ' 0 ' ,
2011-01-20 02:11:49 +01:00
` name ` varchar ( 24 ) NOT NULL ,
2015-02-13 18:31:50 +00:00
PRIMARY KEY ( ` ownerguid ` ) ,
2008-10-11 14:16:25 -05:00
UNIQUE KEY ` index_ownerguid_petitionguid ` ( ` ownerguid ` , ` petitionguid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Guild System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-10-11 14:16:25 -05:00
--
-- 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 ` ;
2010-02-01 18:52:42 +01:00
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
2008-10-11 14:16:25 -05:00
CREATE TABLE ` petition_sign ` (
2014-10-26 02:57:28 +02:00
` ownerguid ` bigint ( 20 ) unsigned NOT NULL ,
` petitionguid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` playerguid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-20 02:11:49 +01:00
` player_account ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2011-01-19 01:31:08 +01:00
PRIMARY KEY ( ` petitionguid ` , ` playerguid ` ) ,
KEY ` Idx_playerguid ` ( ` playerguid ` ) ,
KEY ` Idx_ownerguid ` ( ` ownerguid ` )
2010-11-19 15:53:14 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = ' Guild System ' ;
2010-02-01 18:52:42 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
2008-12-24 09:58:26 -06:00
2008-10-11 14:16:25 -05:00
--
-- 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 ;
2010-09-14 13:56:27 +02:00
--
-- 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 ;
2014-08-28 15:32:38 +01:00
--
-- Table structure for table `pvpstats_battlegrounds`
--
DROP TABLE IF EXISTS ` pvpstats_battlegrounds ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` pvpstats_battlegrounds ` (
` id ` bigint ( 20 ) unsigned NOT NULL AUTO_INCREMENT ,
` winner_faction ` tinyint ( 4 ) NOT NULL ,
` bracket_id ` tinyint ( 3 ) unsigned NOT NULL ,
` type ` tinyint ( 3 ) unsigned NOT NULL ,
` date ` datetime NOT NULL ,
PRIMARY KEY ( ` id ` )
2015-01-27 22:43:45 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2014-08-28 15:32:38 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `pvpstats_battlegrounds`
--
LOCK TABLES ` pvpstats_battlegrounds ` WRITE ;
/* !40000 ALTER TABLE `pvpstats_battlegrounds` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `pvpstats_battlegrounds` ENABLE KEYS */ ;
UNLOCK TABLES ;
--
-- Table structure for table `pvpstats_players`
--
DROP TABLE IF EXISTS ` pvpstats_players ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` pvpstats_players ` (
` battleground_id ` bigint ( 20 ) unsigned NOT NULL ,
2014-10-26 02:57:28 +02:00
` character_guid ` bigint ( 20 ) unsigned NOT NULL ,
2015-11-08 00:38:55 +01:00
` winner ` bit ( 1 ) NOT NULL ,
2014-08-28 15:32:38 +01:00
` score_killing_blows ` mediumint ( 8 ) unsigned NOT NULL ,
` score_deaths ` mediumint ( 8 ) unsigned NOT NULL ,
` score_honorable_kills ` mediumint ( 8 ) unsigned NOT NULL ,
` score_bonus_honor ` mediumint ( 8 ) unsigned NOT NULL ,
` score_damage_done ` mediumint ( 8 ) unsigned NOT NULL ,
` score_healing_done ` mediumint ( 8 ) unsigned NOT NULL ,
` attr_1 ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` attr_2 ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` attr_3 ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` attr_4 ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
` attr_5 ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` battleground_id ` , ` character_guid ` )
2015-01-27 22:43:45 +00:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2014-08-28 15:32:38 +01:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `pvpstats_players`
--
LOCK TABLES ` pvpstats_players ` WRITE ;
/* !40000 ALTER TABLE `pvpstats_players` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `pvpstats_players` ENABLE KEYS */ ;
UNLOCK TABLES ;
2014-10-18 13:05:47 +02:00
--
-- Table structure for table `quest_tracker`
--
DROP TABLE IF EXISTS ` quest_tracker ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` quest_tracker ` (
` id ` mediumint ( 8 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-26 10:34:33 +01:00
` character_guid ` bigint ( 20 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-10-18 13:05:47 +02:00
` quest_accept_time ` datetime NOT NULL ,
` quest_complete_time ` datetime DEFAULT NULL ,
` quest_abandon_time ` datetime DEFAULT NULL ,
` completed_by_gm ` tinyint ( 1 ) NOT NULL DEFAULT ' 0 ' ,
` core_hash ` varchar ( 120 ) NOT NULL DEFAULT ' 0 ' ,
2015-01-27 22:43:45 +00:00
` core_revision ` varchar ( 120 ) NOT NULL DEFAULT ' 0 ' ,
PRIMARY KEY ( ` id ` , ` character_guid ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2014-10-18 13:05:47 +02:00
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `quest_tracker`
--
LOCK TABLES ` quest_tracker ` WRITE ;
/* !40000 ALTER TABLE `quest_tracker` DISABLE KEYS */ ;
/* !40000 ALTER TABLE `quest_tracker` ENABLE KEYS */ ;
UNLOCK TABLES ;
2010-11-19 15:53:14 +01:00
--
-- 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 ;
2015-03-21 17:09:25 +00:00
--
-- Table structure for table `updates`
--
DROP TABLE IF EXISTS ` updates ` ;
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
/* !40101 SET character_set_client = utf8 */ ;
CREATE TABLE ` updates ` (
` name ` varchar ( 200 ) NOT NULL COMMENT ' filename with extension of the update. ' ,
` hash ` char ( 40 ) DEFAULT ' ' COMMENT ' sha1 hash of the sql file. ' ,
` state ` enum ( ' RELEASED ' , ' ARCHIVED ' ) NOT NULL DEFAULT ' RELEASED ' COMMENT ' defines if an update is released or archived. ' ,
` timestamp ` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT ' timestamp when the query was applied. ' ,
` speed ` int ( 10 ) unsigned NOT NULL DEFAULT ' 0 ' COMMENT ' time the query takes to apply in ms. ' ,
PRIMARY KEY ( ` name ` )
) ENGINE = MyISAM DEFAULT CHARSET = utf8 COMMENT = ' List of all applied updates in this database. ' ;
/* !40101 SET character_set_client = @saved_cs_client */ ;
--
-- Dumping data for table `updates`
--
LOCK TABLES ` updates ` WRITE ;
/* !40000 ALTER TABLE `updates` DISABLE KEYS */ ;
2016-10-16 17:38:56 +01:00
INSERT INTO ` updates ` VALUES ( ' 2014_10_20_00_characters.sql ' , ' A5882DA0979CF4DAE33DA011EBAA006C24BE7230 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_10_23_00_characters.sql ' , ' E2AC4758133EE19B7F08464A445802154D1261C8 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_10_23_01_characters.sql ' , ' 20029E6323D9773B32C34D84FFED1711CC60F09F ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_10_23_02_characters.sql ' , ' 8A7A16886EE71E7ACDDB3DDA6D0ECAC2FD2FDCA8 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_10_24_00_characters.sql ' , ' D008FE81AE844FCA686439D6ECC5108FB0DD1EB9 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_10_25_00_characters.sql ' , ' A39C7BE46686B54776BDAB9D7A882D91EDEC51A4 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_10_26_00_characters.sql ' , ' C787954CC35FE34B4101FDE6527F14C027F4947C ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_11_12_00_characters.sql ' , ' B160BB2313F1BD5F3B076A5A9279DC10D4796E34 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_12_23_00_characters.sql ' , ' 3D9D648B2387B357F4BD090B33F80682F7924882 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_12_28_00_characters.sql ' , ' 5362922FF4483A336311D73082A5727309CD9219 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2014_12_31_00_characters.sql ' , ' 498DDF2DD936CF156D74A8208DC93DCE9FCAB5AA ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_01_02_00_characters.sql ' , ' E5940BE836F253982E07930120422E598D08BDE1 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_01_10_00_characters.sql ' , ' 30796056C8623699B2FE1BF626A19D38262E9284 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_01_16_00_characters.sql ' , ' 96642760A54C8D799AAFE438049A63AA521656F2 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_01_27_00_characters.sql ' , ' EB710E3EB9F2CAFD84AB62CDC84E898403A80A4F ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_02_13_00_characters.sql ' , ' 405BEB4ED207DC6076442A37EE2AFB1F21E274A0 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_02_13_01_characters.sql ' , ' 35F582D4F33BF55D1685A1BA89273ED895FD09C5 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_02_17_00_characters.sql ' , ' 8D21FC5A55BF8B55D6DCDCE5F02CF2B640230E94 ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_03_10_00_characters.sql ' , ' E565B89B145C340067742DFF2DEF1B74F5F1BD4E ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_03_20_00_characters.sql ' , ' B761760804EA73BD297F296C5C1919687DF7191C ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_03_20_01_characters.sql ' , ' 20BD68468C57FCF7E665B4DA185DCD52FACE8B3F ' , ' ARCHIVED ' , ' 2015-03-21 15:55:55 ' , 0 ) , ( ' 2015_03_20_02_characters.sql ' , ' 0296995DCD3676BA9AE6024CA7C91C5F39D927A3 ' , ' ARCHIVED ' , ' 2015-03-21 15:56:46 ' , 0 ) , ( ' 2015_03_29_00_characters.sql ' , ' 95D6A46BB746A8BD3EE3FE2086DF1A07F7C33B92 ' , ' ARCHIVED ' , ' 2015-05-02 15:43:06 ' , 0 ) , ( ' 2015_04_21_00_characters.sql ' , ' F2032B9BF4EDA7EDE5065554724ED392FD91657D ' , ' ARCHIVED ' , ' 2015-05-02 15:43:06 ' , 0 ) , ( ' 2015_04_28_00_characters.sql ' , ' 949F62DB3A3461D420A1230ECF7A6A3ED6435703 ' , ' ARCHIVED ' , ' 2015-05-02 15:43:06 ' , 0 ) , ( ' 2015_05_08_00_characters.sql ' , ' 0F14B7821618D1C872625B6EDDAA9A667B211167 ' , ' ARCHIVED ' , ' 2015-07-10 19:32:17 ' , 0 ) , ( ' 2015_05_22_00_characters.sql ' , ' 65B82152413FAB23BE413656E59A486A74447FF7 ' , ' ARCHIVED ' , ' 2015-07-10 19:32:17 ' , 0 ) , ( ' 2015_07_08_00_characters.sql ' , ' DAB25360ACB5244C8F8E6214CF6BD97160588A5B ' , ' ARCHIVED ' , ' 2015-07-10 19:32:17 ' , 0 ) , ( ' 2015_07_11_00_characters.sql ' , ' B421B6C0E57BD0FD587071358863D9DABF4BA849 ' , ' ARCHIVED ' , ' 2015-07-13 21:50:02 ' , 0 ) , ( ' 2015_07_12_00_characters.sql ' , ' E98E7FD61EF6426E7EDE8ED9AD8C15D8D7132589 ' , ' ARCHIVED ' , ' 2015-07-13 21:50:02 ' , 0 ) , ( ' 2015_07_28_00_characters.sql ' , ' 0711BC3A658D189EF71B0CB68DCFF2E9B781C4A0 ' , ' ARCHIVED ' , ' 2015-07-29 16:23:56 ' , 0 ) , ( ' 2015_08_08_00_characters.sql ' , ' EA12BB2DC24FAF2300A96D0888A45BBEA158D5DC ' , ' ARCHIVED ' , ' 2015-08-08 16:34:07 ' , 0 ) , ( ' 2015_08_12_00_characters.sql ' , ' 4FD7F89FE5DA51D4E0C33E520719986AA3EBD31B ' , ' ARCHIVED ' , ' 2015-08-12 12:35:20 ' , 0 ) , ( ' 2015_09_05_00_characters.sql ' , ' 4C22BB29365BE4B6B95E64DAD84B63CA002304EA ' , ' ARCHIVED ' , ' 2015-09-05 12:35:20 ' , 0 ) , ( ' 2015_09_09_00_characters.sql ' , ' AFC32E693BC17CFD9A17919FE5317B8FE337ACAD ' , ' ARCHIVED ' , ' 2015-09-09 12:35:20 ' , 0 ) , ( ' 2015_09_10_00_characters.sql ' , ' 4555A7F35C107E54C13D74D20F141039ED42943E ' , ' ARCHIVED ' , ' 2015-09-10 22:50:42 ' , 0 ) , ( ' 2015_10_16_00_characters.sql ' , ' E3A3FFF0CB42F04A8DCF0CE4362143C16E208
2015-03-21 17:09:25 +00:00
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `updates_include`
--
DROP TABLE IF EXISTS `updates_include`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `updates_include` (
`path` varchar(200) NOT NULL COMMENT ' directory to include . $ means relative to the source directory . ' ,
`state` enum( ' RELEASED ' , ' ARCHIVED ' ) NOT NULL DEFAULT ' RELEASED ' COMMENT ' defines if the directory contains released or archived updates . ' ,
PRIMARY KEY (`path`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT= ' List of directories where we want to include sql updates . ' ;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `updates_include`
--
LOCK TABLES `updates_include` WRITE;
/*!40000 ALTER TABLE `updates_include` DISABLE KEYS */;
INSERT INTO `updates_include` VALUES ( ' $ / sql / updates / characters ' , ' RELEASED ' ),( ' $ / sql / custom / characters ' , ' RELEASED ' ),( ' $ / sql / old / 6 . x / characters ' , ' ARCHIVED ' );
/*!40000 ALTER TABLE `updates_include` ENABLE KEYS */;
UNLOCK TABLES;
2012-02-19 13:51:16 +01:00
--
-- 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;
2008-10-11 14:16:25 -05:00
--
2010-03-26 16:48:33 +01:00
-- Table structure for table `worldstates`
2008-10-11 14:16:25 -05:00
--
2008-10-14 12:30:35 -05:00
2010-03-26 16:48:33 +01:00
DROP TABLE IF EXISTS `worldstates`;
2010-02-01 18:52:42 +01:00
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2010-03-26 16:48:33 +01:00
CREATE TABLE `worldstates` (
2011-01-20 02:11:49 +01:00
`entry` int(10) unsigned NOT NULL DEFAULT ' 0 ' ,
`value` int(10) unsigned NOT NULL DEFAULT ' 0 ' ,
`comment` tinytext,
2011-01-19 01:31:08 +01:00
PRIMARY KEY (`entry`)
2010-11-19 15:53:14 +01:00
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT= ' Variable Saves ' ;
2010-02-01 18:52:42 +01:00
/*!40101 SET character_set_client = @saved_cs_client */;
2008-10-11 14:16:25 -05:00
--
2010-03-26 16:48:33 +01:00
-- Dumping data for table `worldstates`
2008-10-11 14:16:25 -05:00
--
2010-03-26 16:48:33 +01:00
LOCK TABLES `worldstates` WRITE;
/*!40000 ALTER TABLE `worldstates` DISABLE KEYS */;
2011-01-19 01:31:08 +01:00
INSERT INTO `worldstates` VALUES (20001,0, ' NextArenaPointDistributionTime ' ),(20002,0, ' NextWeeklyQuestResetTime ' ),(20003,0, ' NextBGRandomDailyResetTime ' ),(20004,0, ' cleaning_flags ' );
2010-03-26 16:48:33 +01:00
/*!40000 ALTER TABLE `worldstates` ENABLE KEYS */;
2008-10-11 14:16:25 -05:00
UNLOCK TABLES;
2008-12-26 21:45:02 -06:00
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
2008-12-21 09:33:44 -06:00
2008-10-11 14:16:25 -05:00
/*!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 */;
2012-05-30 08:01:02 +02:00
2016-10-16 17:38:56 +01:00
-- Dump completed on 2016-10-16 17:35:47