aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorteacher <none@none>2010-02-01 18:52:42 +0100
committerteacher <none@none>2010-02-01 18:52:42 +0100
commit65705a16c148d06e1b7f029edd98756dbef24489 (patch)
tree22f9a216f76e5256f70211f24d230de481ee8467
parent9b6cf93d7a3af284e043dbbd387b4373b61e3477 (diff)
Updated world.sql and characters.sql.
Removed commented code form realm.sql and set account.expansion field default value to 2 (wotlk) (thx Aokromes). Properly set default values for some world DB fields. Properly set some world DB fields to allow Database import in strict mode (by Brian). Updated world_script_full with recent committed npc script. Renamed a couple of files with proper revision number. Note: no DB data will changed nor harmed by this commit. --HG-- branch : trunk
-rw-r--r--sql/FULL/world_scripts_full.sql1
-rw-r--r--sql/characters.sql304
-rw-r--r--sql/realmd.sql49
-rw-r--r--sql/updates/7229_world_scriptname.sql (renamed from sql/updates/7229_world_creature_template.sql)0
-rw-r--r--sql/updates/7246_world_command.sql (renamed from sql/updates/7245_world_command.sql)0
-rw-r--r--sql/updates/7279_realmd_account.sql1
-rw-r--r--sql/updates/7279_world_creature_template.sql2
-rw-r--r--sql/updates/7279_world_gameobject_template.sql1
-rw-r--r--sql/updates/7279_world_item_template.sql11
-rw-r--r--sql/updates/7279_world_pool_creature.sql2
-rw-r--r--sql/updates/7279_world_pool_gameobject.sql1
-rw-r--r--sql/updates/7279_world_pool_pool.sql1
-rw-r--r--sql/updates/7279_world_pool_template.sql2
-rw-r--r--sql/updates/7279_world_quest_template.sql2
-rw-r--r--sql/world.sql24
15 files changed, 308 insertions, 93 deletions
diff --git a/sql/FULL/world_scripts_full.sql b/sql/FULL/world_scripts_full.sql
index 2ca7c2c87c4..c9d14c588e5 100644
--- a/sql/FULL/world_scripts_full.sql
+++ b/sql/FULL/world_scripts_full.sql
@@ -146,6 +146,7 @@ UPDATE `creature_template` SET `AIName`='TurretAI', `ScriptName`='' WHERE `entry
UPDATE `creature_template` SET `ScriptName`='npc_highlord_darion_mograine' WHERE `entry`=29173;
UPDATE `creature_template` SET `ScriptName`='npc_the_lich_king_tirion_dawn' WHERE `entry` IN (29183,29175);
UPDATE `creature_template` SET `ScriptName`='npc_shadowfiend' WHERE `entry` = 19668;
+UPDATE `creature_template` SET `ScriptName`='npc_wormhole' WHERE `entry`='35646';
/* */
/* ZONE */
diff --git a/sql/characters.sql b/sql/characters.sql
index a7ff0ea9604..a6014f8d852 100644
--- a/sql/characters.sql
+++ b/sql/characters.sql
@@ -15,33 +15,13 @@
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-/*
-
---
--- Table structure for table `character_db_version`
---
-
-DROP TABLE IF EXISTS `character_db_version`;
-CREATE TABLE `character_db_version` (
- `required_8433_01_characters_character_account_data` bit(1) default NULL
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
-
---
--- Dumping data for table `character_db_version`
---
-
-LOCK TABLES `character_db_version` WRITE;
-INSERT INTO `character_db_version` VALUES
-(NULL);
-UNLOCK TABLES;
-
-*/
-
--
-- Table structure for table `account_data`
--
DROP TABLE IF EXISTS `account_data`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_data` (
`account` int(11) unsigned NOT NULL default '0',
`type` int(11) unsigned NOT NULL default '0',
@@ -49,6 +29,7 @@ CREATE TABLE `account_data` (
`data` longtext NOT NULL,
PRIMARY KEY (`account`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account_data`
@@ -64,11 +45,14 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `addons`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `addons` (
`name` varchar(120) NOT NULL default '',
`crc` mediumint(32) unsigned NOT NULL default '0',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Addons';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `addons`
@@ -84,6 +68,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `arena_team`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `arena_team` (
`arenateamid` int(10) unsigned NOT NULL default '0',
`name` char(255) NOT NULL,
@@ -96,6 +82,7 @@ CREATE TABLE `arena_team` (
`BorderColor` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`arenateamid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `arena_team`
@@ -111,6 +98,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `arena_team_member`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `arena_team_member` (
`arenateamid` int(10) unsigned NOT NULL default '0',
`guid` int(10) unsigned NOT NULL default '0',
@@ -121,6 +110,7 @@ CREATE TABLE `arena_team_member` (
`personal_rating` int(10) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`arenateamid`,`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `arena_team_member`
@@ -136,6 +126,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `arena_team_stats`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `arena_team_stats` (
`arenateamid` int(10) unsigned NOT NULL default '0',
`rating` int(10) unsigned NOT NULL default '0',
@@ -146,6 +138,7 @@ CREATE TABLE `arena_team_stats` (
`rank` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`arenateamid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `arena_team_stats`
@@ -161,6 +154,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `auctionhouse`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auctionhouse` (
`id` int(11) unsigned NOT NULL default '0',
`auctioneerguid` int(11) unsigned NOT NULL default '0',
@@ -176,6 +171,7 @@ CREATE TABLE `auctionhouse` (
PRIMARY KEY (`id`),
UNIQUE KEY `item_guid` (`itemguid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auctionhouse`
@@ -191,6 +187,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `auctionhousebot`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auctionhousebot` (
`auctionhouse` int(11) NOT NULL default '0' COMMENT 'mapID of the auctionhouse.',
`name` char(25) default NULL COMMENT 'Text name of the auctionhouse.',
@@ -256,12 +254,13 @@ CREATE TABLE `auctionhousebot` (
`buyerbidsperinterval` int(11) default '1' COMMENT 'number of bids to put in per bidding interval',
PRIMARY KEY (`auctionhouse`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
--- Data for table `auctionhousebot`
+-- Dumping data for table `auctionhousebot`
--
-insert into `auctionhousebot`(`auctionhouse`,`name`,`minitems`,`maxitems`,`percentgreytradegoods`,`percentwhitetradegoods`,`percentgreentradegoods`,`percentbluetradegoods`,`percentpurpletradegoods`,`percentorangetradegoods`,`percentyellowtradegoods`,`percentgreyitems`,`percentwhiteitems`,`percentgreenitems`,`percentblueitems`,`percentpurpleitems`,`percentorangeitems`,`percentyellowitems`,`minpricegrey`,`maxpricegrey`,`minpricewhite`,`maxpricewhite`,`minpricegreen`,`maxpricegreen`,`minpriceblue`,`maxpriceblue`,`minpricepurple`,`maxpricepurple`,`minpriceorange`,`maxpriceorange`,`minpriceyellow`,`maxpriceyellow`,`minbidpricegrey`,`maxbidpricegrey`,`minbidpricewhite`,`maxbidpricewhite`,`minbidpricegreen`,`maxbidpricegreen`,`minbidpriceblue`,`maxbidpriceblue`,`minbidpricepurple`,`maxbidpricepurple`,`minbidpriceorange`,`maxbidpriceorange`,`minbidpriceyellow`,`maxbidpriceyellow`,`maxstackgrey`,`maxstackwhite`,`maxstackgreen`,`maxstackblue`,`maxstackpurple`,`maxstackorange`,`maxstackyellow`,`buyerpricegrey`,`buyerpricewhite`,`buyerpricegreen`,`buyerpriceblue`,`buyerpricepurple`,`buyerpriceorange`,`buyerpriceyellow`,`buyerbiddinginterval`,`buyerbidsperinterval`) values
+INSERT INTO `auctionhousebot`(`auctionhouse`,`name`,`minitems`,`maxitems`,`percentgreytradegoods`,`percentwhitetradegoods`,`percentgreentradegoods`,`percentbluetradegoods`,`percentpurpletradegoods`,`percentorangetradegoods`,`percentyellowtradegoods`,`percentgreyitems`,`percentwhiteitems`,`percentgreenitems`,`percentblueitems`,`percentpurpleitems`,`percentorangeitems`,`percentyellowitems`,`minpricegrey`,`maxpricegrey`,`minpricewhite`,`maxpricewhite`,`minpricegreen`,`maxpricegreen`,`minpriceblue`,`maxpriceblue`,`minpricepurple`,`maxpricepurple`,`minpriceorange`,`maxpriceorange`,`minpriceyellow`,`maxpriceyellow`,`minbidpricegrey`,`maxbidpricegrey`,`minbidpricewhite`,`maxbidpricewhite`,`minbidpricegreen`,`maxbidpricegreen`,`minbidpriceblue`,`maxbidpriceblue`,`minbidpricepurple`,`maxbidpricepurple`,`minbidpriceorange`,`maxbidpriceorange`,`minbidpriceyellow`,`maxbidpriceyellow`,`maxstackgrey`,`maxstackwhite`,`maxstackgreen`,`maxstackblue`,`maxstackpurple`,`maxstackorange`,`maxstackyellow`,`buyerpricegrey`,`buyerpricewhite`,`buyerpricegreen`,`buyerpriceblue`,`buyerpricepurple`,`buyerpriceorange`,`buyerpriceyellow`,`buyerbiddinginterval`,`buyerbidsperinterval`) VALUES
(2,'Alliance',0,0,0,27,12,10,1,0,0,0,10,30,8,2,0,0,100,150,150,250,800,1400,1250,1750,2250,4550,3250,5550,5250,6550,70,100,70,100,80,100,75,100,80,100,80,100,80,100,0,0,3,2,1,1,1,1,3,5,12,15,20,22,1,1),
(6,'Horde',0,0,0,27,12,10,1,0,0,0,10,30,8,2,0,0,100,150,150,250,800,1400,1250,1750,2250,4550,3250,5550,5250,6550,70,100,70,100,80,100,75,100,80,100,80,100,80,100,0,0,3,2,1,1,1,1,3,5,12,15,20,22,1,1),
(7,'Neutral',0,0,0,27,12,10,1,0,0,0,10,30,8,2,0,0,100,150,150,250,800,1400,1250,1750,2250,4550,3250,5550,5250,6550,70,100,70,100,80,100,75,100,80,100,80,100,80,100,0,0,3,2,1,1,1,1,3,5,12,15,20,22,1,1);
@@ -271,12 +270,15 @@ insert into `auctionhousebot`(`auctionhouse`,`name`,`minitems`,`maxitems`,`perc
--
DROP TABLE IF EXISTS `bugreport`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bugreport` (
`id` int(11) NOT NULL auto_increment COMMENT 'Identifier',
- `type` varchar(255) NOT NULL default '',
- `content` varchar(255) NOT NULL default '',
+ `type` longtext NOT NULL default '',
+ `content` longtext NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Debug System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bugreport`
@@ -287,10 +289,13 @@ LOCK TABLES `bugreport` WRITE;
/*!40000 ALTER TABLE `bugreport` ENABLE KEYS */;
UNLOCK TABLES;
--- ----------------------------
--- Table structure for channels
--- ----------------------------
+--
+-- Table structure for table `channels`
+--
+
DROP TABLE IF EXISTS `channels`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `channels` (
`m_name` text NOT NULL,
`m_team` int(10) unsigned NOT NULL,
@@ -300,12 +305,24 @@ CREATE TABLE `channels` (
`BannedList` longtext,
PRIMARY KEY (`m_name`(10),`m_team`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Channel System';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `channels`
+--
+
+LOCK TABLES `channels` WRITE;
+/*!40000 ALTER TABLE `channels` DISABLE KEYS */;
+/*!40000 ALTER TABLE `channels` ENABLE KEYS */;
+UNLOCK TABLES;
--
-- Table structure for table `characters`
--
DROP TABLE IF EXISTS `characters`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`account` int(11) unsigned NOT NULL default '0' COMMENT 'Account Identifier',
@@ -357,6 +374,7 @@ CREATE TABLE `characters` (
KEY `idx_online` (`online`),
KEY `idx_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters`
@@ -372,6 +390,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_account_data`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_account_data` (
`guid` int(11) unsigned NOT NULL default '0',
`type` int(11) unsigned NOT NULL default '0',
@@ -379,6 +399,7 @@ CREATE TABLE `character_account_data` (
`data` longtext NOT NULL,
PRIMARY KEY (`guid`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_account_data`
@@ -394,12 +415,15 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_achievement`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_achievement` (
`guid` int(11) unsigned NOT NULL,
`achievement` int(11) unsigned NOT NULL,
`date` bigint(11) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`achievement`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_achievement`
@@ -415,6 +439,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_achievement_progress`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_achievement_progress` (
`guid` int(11) unsigned NOT NULL,
`criteria` int(11) unsigned NOT NULL,
@@ -422,6 +448,7 @@ CREATE TABLE `character_achievement_progress` (
`date` bigint(11) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`criteria`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_achievement_progress`
@@ -437,6 +464,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_action`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_action` (
`guid` int(11) unsigned NOT NULL default '0',
`spec` tinyint(3) unsigned NOT NULL default '0',
@@ -445,6 +474,7 @@ CREATE TABLE `character_action` (
`type` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spec`,`button`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_action`
@@ -460,6 +490,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_aura`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_aura` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`caster_guid` bigint(20) unsigned NOT NULL default '0' COMMENT 'Full Global Unique Identifier',
@@ -478,6 +510,7 @@ CREATE TABLE `character_aura` (
`remaincharges` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spell`,`effect_mask`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_aura`
@@ -493,6 +526,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_battleground_data`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_battleground_data` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`instance_id` int(11) unsigned NOT NULL default '0',
@@ -507,6 +542,7 @@ CREATE TABLE `character_battleground_data` (
`mount_spell` int(11) NOT NULL default '0',
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_battleground_data`
@@ -522,6 +558,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_declinedname`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_declinedname` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`genitive` varchar(15) NOT NULL default '',
@@ -531,6 +569,7 @@ CREATE TABLE `character_declinedname` (
`prepositional` varchar(15) NOT NULL default '',
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_declinedname`
@@ -546,6 +585,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_equipmentsets`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_equipmentsets` (
`guid` int(11) NOT NULL default '0',
`setguid` bigint(20) NOT NULL auto_increment,
@@ -574,6 +615,7 @@ CREATE TABLE `character_equipmentsets` (
PRIMARY KEY (`setguid`),
UNIQUE KEY `idx_set` (`guid`,`setguid`,`setindex`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_equipmentsets`
@@ -589,6 +631,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_gifts`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_gifts` (
`guid` int(20) unsigned NOT NULL default '0',
`item_guid` int(11) unsigned NOT NULL default '0',
@@ -597,6 +641,7 @@ CREATE TABLE `character_gifts` (
PRIMARY KEY (`item_guid`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_gifts`
@@ -612,6 +657,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_glyphs`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_glyphs` (
`guid` int(11) unsigned NOT NULL,
`spec` tinyint(3) unsigned NOT NULL DEFAULT '0',
@@ -623,6 +670,7 @@ CREATE TABLE `character_glyphs` (
`glyph6` int(11) unsigned DEFAULT '0',
PRIMARY KEY (`guid`,`spec`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_glyphs`
@@ -638,6 +686,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_homebind`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_homebind` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`map` int(11) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
@@ -647,6 +697,7 @@ CREATE TABLE `character_homebind` (
`position_z` float NOT NULL default '0',
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_homebind`
@@ -662,6 +713,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_instance`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_instance` (
`guid` int(11) unsigned NOT NULL default '0',
`instance` int(11) unsigned NOT NULL default '0',
@@ -669,6 +722,7 @@ CREATE TABLE `character_instance` (
PRIMARY KEY (`guid`,`instance`),
KEY `instance` (`instance`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_instance`
@@ -684,6 +738,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_inventory`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_inventory` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`bag` int(11) unsigned NOT NULL default '0',
@@ -693,6 +749,7 @@ CREATE TABLE `character_inventory` (
PRIMARY KEY (`item`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_inventory`
@@ -708,6 +765,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_pet`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_pet` (
`id` int(11) unsigned NOT NULL default '0',
`entry` int(11) unsigned NOT NULL default '0',
@@ -731,6 +790,7 @@ CREATE TABLE `character_pet` (
PRIMARY KEY (`id`),
KEY `owner` (`owner`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Pet System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_pet`
@@ -746,6 +806,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_pet_declinedname`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_pet_declinedname` (
`id` int(11) unsigned NOT NULL default '0',
`owner` int(11) unsigned NOT NULL default '0',
@@ -757,6 +819,7 @@ CREATE TABLE `character_pet_declinedname` (
PRIMARY KEY (`id`),
KEY owner_key (`owner`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_pet_declinedname`
@@ -772,6 +835,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_queststatus`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_queststatus` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`quest` int(11) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
@@ -789,6 +854,7 @@ CREATE TABLE `character_queststatus` (
`itemcount4` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`quest`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_queststatus`
@@ -804,6 +870,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_queststatus_daily`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_queststatus_daily` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`quest` int(11) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
@@ -811,6 +879,7 @@ CREATE TABLE `character_queststatus_daily` (
PRIMARY KEY (`guid`,`quest`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_queststatus_daily`
@@ -826,6 +895,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_reputation`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_reputation` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`faction` int(11) unsigned NOT NULL default '0',
@@ -833,6 +904,7 @@ CREATE TABLE `character_reputation` (
`flags` int(11) NOT NULL default '0',
PRIMARY KEY (`guid`,`faction`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_reputation`
@@ -848,6 +920,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_skills`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_skills` (
`guid` int(11) unsigned NOT NULL COMMENT 'Global Unique Identifier',
`skill` mediumint(9) unsigned NOT NULL,
@@ -855,6 +929,7 @@ CREATE TABLE `character_skills` (
`max` mediumint(9) unsigned NOT NULL,
PRIMARY KEY (`guid`,`skill`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_skills`
@@ -870,6 +945,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_social`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_social` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Character Global Unique Identifier',
`friend` int(11) unsigned NOT NULL default '0' COMMENT 'Friend Global Unique Identifier',
@@ -881,6 +958,7 @@ CREATE TABLE `character_social` (
KEY `guid_flags` (`guid`,`flags`),
KEY `friend_flags` (`friend`,`flags`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_social`
@@ -896,6 +974,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_spell`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_spell` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`spell` int(11) unsigned NOT NULL default '0' COMMENT 'Spell Identifier',
@@ -903,6 +983,7 @@ CREATE TABLE `character_spell` (
`disabled` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_spell`
@@ -918,6 +999,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_spell_cooldown`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_spell_cooldown` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier, Low part',
`spell` int(11) unsigned NOT NULL default '0' COMMENT 'Spell Identifier',
@@ -925,6 +1008,7 @@ CREATE TABLE `character_spell_cooldown` (
`time` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_spell_cooldown`
@@ -940,15 +1024,18 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_talent`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_talent` (
`guid` int(11) unsigned NOT NULL,
`spell` int(11) unsigned NOT NULL,
`spec` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`,`spell`,`spec`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
--- Dumping data for table `character_tutorial`
+-- Dumping data for table `character_talent`
--
LOCK TABLES `character_talent` WRITE;
@@ -961,6 +1048,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `character_tutorial`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_tutorial` (
`account` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Account Identifier',
`realmid` int(11) unsigned NOT NULL default '0' COMMENT 'Realm Identifier',
@@ -975,6 +1064,7 @@ CREATE TABLE `character_tutorial` (
PRIMARY KEY (`account`,`realmid`),
KEY acc_key (`account`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_tutorial`
@@ -990,6 +1080,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `corpse`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `corpse` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`player` int(11) unsigned NOT NULL default '0' COMMENT 'Character Global Unique Identifier',
@@ -1008,6 +1100,7 @@ CREATE TABLE `corpse` (
KEY `idx_type` (`corpse_type`),
KEY `instance` (`instance`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Death System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `corpse`
@@ -1023,12 +1116,15 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `game_event_condition_save`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `game_event_condition_save` (
`event_id` mediumint(8) unsigned NOT NULL,
`condition_id` mediumint(8) unsigned NOT NULL default '0',
`done` float default '0',
PRIMARY KEY (`event_id`,`condition_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `game_event_condition_save`
@@ -1044,12 +1140,15 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `game_event_save`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `game_event_save` (
`event_id` mediumint(8) unsigned NOT NULL,
`state` tinyint(3) unsigned NOT NULL default '1',
`next_start` timestamp NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `game_event_save`
@@ -1065,6 +1164,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `gm_tickets`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gm_tickets` (
`guid` int(10) NOT NULL auto_increment,
`playerGuid` int(11) unsigned NOT NULL default '0',
@@ -1081,6 +1182,7 @@ CREATE TABLE `gm_tickets` (
`comment` text NOT NULL,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `gm_tickets`
@@ -1092,45 +1194,12 @@ LOCK TABLES `gm_tickets` WRITE;
UNLOCK TABLES;
--
--- Table structure for table `groups`
---
-
-DROP TABLE IF EXISTS `groups`;
-CREATE TABLE `groups` (
- `leaderGuid` int(11) unsigned NOT NULL,
- `mainTank` int(11) unsigned NOT NULL,
- `mainAssistant` int(11) unsigned NOT NULL,
- `lootMethod` tinyint(4) unsigned NOT NULL,
- `looterGuid` int(11) unsigned NOT NULL,
- `lootThreshold` tinyint(4) unsigned NOT NULL,
- `icon1` int(11) unsigned NOT NULL,
- `icon2` int(11) unsigned NOT NULL,
- `icon3` int(11) unsigned NOT NULL,
- `icon4` int(11) unsigned NOT NULL,
- `icon5` int(11) unsigned NOT NULL,
- `icon6` int(11) unsigned NOT NULL,
- `icon7` int(11) unsigned NOT NULL,
- `icon8` int(11) unsigned NOT NULL,
- `isRaid` tinyint(1) unsigned NOT NULL,
- `difficulty` tinyint(3) unsigned NOT NULL default '0',
- `raiddifficulty` int(11) UNSIGNED NOT NULL default '0',
- PRIMARY KEY (`leaderGuid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Groups';
-
---
--- Dumping data for table `groups`
---
-
-LOCK TABLES `groups` WRITE;
-/*!40000 ALTER TABLE `groups` DISABLE KEYS */;
-/*!40000 ALTER TABLE `groups` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
-- Table structure for table `group_instance`
--
DROP TABLE IF EXISTS `group_instance`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `group_instance` (
`leaderGuid` int(11) unsigned NOT NULL default '0',
`instance` int(11) unsigned NOT NULL default '0',
@@ -1138,6 +1207,7 @@ CREATE TABLE `group_instance` (
PRIMARY KEY (`leaderGuid`,`instance`),
KEY `instance` (`instance`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `group_instance`
@@ -1153,6 +1223,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `group_member`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `group_member` (
`leaderGuid` int(11) unsigned NOT NULL,
`memberGuid` int(11) unsigned NOT NULL,
@@ -1160,6 +1232,7 @@ CREATE TABLE `group_member` (
`subgroup` smallint(6) unsigned NOT NULL,
PRIMARY KEY (`leaderGuid`,`memberGuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Groups';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `group_member`
@@ -1171,10 +1244,50 @@ LOCK TABLES `group_member` WRITE;
UNLOCK TABLES;
--
+-- Table structure for table `groups`
+--
+
+DROP TABLE IF EXISTS `groups`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `groups` (
+ `leaderGuid` int(11) unsigned NOT NULL,
+ `mainTank` int(11) unsigned NOT NULL,
+ `mainAssistant` int(11) unsigned NOT NULL,
+ `lootMethod` tinyint(4) unsigned NOT NULL,
+ `looterGuid` int(11) unsigned NOT NULL,
+ `lootThreshold` tinyint(4) unsigned NOT NULL,
+ `icon1` int(11) unsigned NOT NULL,
+ `icon2` int(11) unsigned NOT NULL,
+ `icon3` int(11) unsigned NOT NULL,
+ `icon4` int(11) unsigned NOT NULL,
+ `icon5` int(11) unsigned NOT NULL,
+ `icon6` int(11) unsigned NOT NULL,
+ `icon7` int(11) unsigned NOT NULL,
+ `icon8` int(11) unsigned NOT NULL,
+ `isRaid` tinyint(1) unsigned NOT NULL,
+ `difficulty` tinyint(3) unsigned NOT NULL default '0',
+ `raiddifficulty` int(11) UNSIGNED NOT NULL default '0',
+ PRIMARY KEY (`leaderGuid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Groups';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `groups`
+--
+
+LOCK TABLES `groups` WRITE;
+/*!40000 ALTER TABLE `groups` DISABLE KEYS */;
+/*!40000 ALTER TABLE `groups` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
-- Table structure for table `guild`
--
DROP TABLE IF EXISTS `guild`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild` (
`guildid` int(6) unsigned NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
@@ -1190,6 +1303,7 @@ CREATE TABLE `guild` (
`BankMoney` bigint(20) NOT NULL default '0',
PRIMARY KEY (`guildid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Guild System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guild`
@@ -1205,6 +1319,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `guild_bank_eventlog`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_eventlog` (
`guildid` int(11) unsigned NOT NULL default '0' COMMENT 'Guild Identificator',
`LogGuid` int(11) unsigned NOT NULL default '0' COMMENT 'Log record identificator - auxiliary column',
@@ -1218,6 +1334,7 @@ CREATE TABLE `guild_bank_eventlog` (
PRIMARY KEY (`guildid`,`LogGuid`,`TabId`),
KEY `guildid_key` (`guildid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guild_bank_eventlog`
@@ -1233,6 +1350,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `guild_bank_item`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_item` (
`guildid` int(11) unsigned NOT NULL default '0',
`TabId` tinyint(1) unsigned NOT NULL default '0',
@@ -1242,6 +1361,7 @@ CREATE TABLE `guild_bank_item` (
PRIMARY KEY (`guildid`,`tabid`,`slotid`),
KEY `guildid_key` (`guildid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guild_bank_item`
@@ -1257,6 +1377,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `guild_bank_right`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_right` (
`guildid` int(11) unsigned NOT NULL default '0',
`TabId` tinyint(1) unsigned NOT NULL default '0',
@@ -1266,6 +1388,7 @@ CREATE TABLE `guild_bank_right` (
PRIMARY KEY (`guildid`,`TabId`,`rid`),
KEY `guildid_key` (`guildid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guild_bank_right`
@@ -1281,6 +1404,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `guild_bank_tab`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_tab` (
`guildid` int(11) unsigned NOT NULL default '0',
`TabId` tinyint(1) unsigned NOT NULL default '0',
@@ -1290,6 +1415,7 @@ CREATE TABLE `guild_bank_tab` (
PRIMARY KEY (`guildid`,`TabId`),
KEY `guildid_key` (`guildid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guild_bank_tab`
@@ -1305,6 +1431,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `guild_eventlog`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_eventlog` (
`guildid` int(11) NOT NULL COMMENT 'Guild Identificator',
`LogGuid` int(11) NOT NULL COMMENT 'Log record identificator - auxiliary column',
@@ -1315,6 +1443,7 @@ CREATE TABLE `guild_eventlog` (
`TimeStamp` bigint(20) NOT NULL COMMENT 'Event UNIX time',
PRIMARY KEY (`guildid`, `LogGuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT 'Guild Eventlog';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guild_eventlog`
@@ -1330,6 +1459,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `guild_member`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_member` (
`guildid` int(6) unsigned NOT NULL default '0',
`guid` int(11) unsigned NOT NULL default '0',
@@ -1354,6 +1485,7 @@ CREATE TABLE `guild_member` (
KEY `guildid_rank_key` (`guildid`,`rank`),
UNIQUE KEY `guid_key` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Guild System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guild_member`
@@ -1369,6 +1501,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `guild_rank`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_rank` (
`guildid` int(6) unsigned NOT NULL default '0',
`rid` int(11) unsigned NOT NULL,
@@ -1377,6 +1511,7 @@ CREATE TABLE `guild_rank` (
`BankMoneyPerDay` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`guildid`,`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Guild System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guild_rank`
@@ -1392,6 +1527,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `instance`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `instance` (
`id` int(11) unsigned NOT NULL default '0',
`map` int(11) unsigned NOT NULL default '0',
@@ -1402,6 +1539,7 @@ CREATE TABLE `instance` (
KEY `map` (`map`),
KEY `resettime` (`resettime`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `instance`
@@ -1417,12 +1555,15 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `instance_reset`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `instance_reset` (
`mapid` int(11) unsigned NOT NULL default '0',
`difficulty` tinyint(1) unsigned NOT NULL default '0',
`resettime` bigint(40) NOT NULL default '0',
PRIMARY KEY (`mapid`,`difficulty`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `instance_reset`
@@ -1438,6 +1579,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `item_instance`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item_instance` (
`guid` int(11) unsigned NOT NULL default '0',
`owner_guid` int(11) unsigned NOT NULL default '0',
@@ -1445,6 +1588,7 @@ CREATE TABLE `item_instance` (
PRIMARY KEY (`guid`),
KEY `idx_owner_guid` (`owner_guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Item System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `item_instance`
@@ -1460,11 +1604,14 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `item_text`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item_text` (
`id` int(11) unsigned NOT NULL default '0',
`text` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `item_text`
@@ -1480,6 +1627,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `mail`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mail` (
`id` int(11) unsigned NOT NULL default '0' COMMENT 'Identifier',
`messageType` tinyint(3) unsigned NOT NULL default '0',
@@ -1498,6 +1647,7 @@ CREATE TABLE `mail` (
PRIMARY KEY (`id`),
KEY `idx_receiver` (`receiver`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Mail System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mail`
@@ -1513,6 +1663,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `mail_items`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mail_items` (
`mail_id` int(11) NOT NULL default '0',
`item_guid` int(11) NOT NULL default '0',
@@ -1521,6 +1673,7 @@ CREATE TABLE `mail_items` (
PRIMARY KEY (`mail_id`,`item_guid`),
KEY `idx_receiver` (`receiver`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mail_items`
@@ -1536,6 +1689,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `pet_aura`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pet_aura` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`caster_guid` bigint(20) unsigned NOT NULL default '0' COMMENT 'Full Global Unique Identifier',
@@ -1554,6 +1709,7 @@ CREATE TABLE `pet_aura` (
`remaincharges` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spell`,`effect_mask`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Pet System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pet_aura`
@@ -1569,12 +1725,15 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `pet_spell`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pet_spell` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`spell` int(11) unsigned NOT NULL default '0' COMMENT 'Spell Identifier',
`active` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Pet System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pet_spell`
@@ -1590,12 +1749,15 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `pet_spell_cooldown`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pet_spell_cooldown` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier, Low part',
`spell` int(11) unsigned NOT NULL default '0' COMMENT 'Spell Identifier',
`time` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pet_spell_cooldown`
@@ -1611,6 +1773,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `petition`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `petition` (
`ownerguid` int(10) unsigned NOT NULL,
`petitionguid` int(10) unsigned default '0',
@@ -1619,6 +1783,7 @@ CREATE TABLE `petition` (
PRIMARY KEY (`ownerguid`,`type`),
UNIQUE KEY `index_ownerguid_petitionguid` (`ownerguid`,`petitionguid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Guild System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `petition`
@@ -1634,6 +1799,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `petition_sign`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `petition_sign` (
`ownerguid` int(10) unsigned NOT NULL,
`petitionguid` int(11) unsigned NOT NULL default '0',
@@ -1642,6 +1809,7 @@ CREATE TABLE `petition_sign` (
`type` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`petitionguid`,`playerguid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Guild System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `petition_sign`
@@ -1657,9 +1825,12 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `saved_variables`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `saved_variables` (
`NextArenaPointDistributionTime` bigint(40) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Variable Saves';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `saved_variables`
@@ -1671,7 +1842,6 @@ LOCK TABLES `saved_variables` WRITE;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
-
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
@@ -1682,4 +1852,4 @@ UNLOCK TABLES;
-- Dump completed on 2008-01-10 11:37:06
--- Updated on 2003-02-22 01:44:45
+-- Updated on 2010-01-29 23:05:45 GMT+1
diff --git a/sql/realmd.sql b/sql/realmd.sql
index 1b5dfb4fa5f..4e235d9eca5 100644
--- a/sql/realmd.sql
+++ b/sql/realmd.sql
@@ -16,31 +16,36 @@
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
--- Structure for table `account_access`
+-- Table structure for table `account_access`
--
DROP TABLE IF EXISTS `account_access`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_access` (
`id` int(11) unsigned NOT NULL,
`gmlevel` tinyint(3) unsigned NOT NULL,
`RealmID` int(11) NOT NULL,
PRIMARY KEY (`id`,`RealmID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
--- Content for table `account_access`
+-- Dumping data for table `account_access`
--
-/*INSERT INTO `account_access` (`id`, `gmlevel`, `RealmID`) VALUES
-(1, 3, -1),
-(2, 2, -1),
-(3, 1, -1);*/
+LOCK TABLES `account_access` WRITE;
+/*!40000 ALTER TABLE `account_access` DISABLE KEYS */;
+/*!40000 ALTER TABLE `account_access` ENABLE KEYS */;
+UNLOCK TABLES;
--
-- Table structure for table `account`
--
DROP TABLE IF EXISTS `account`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account` (
`id` int(11) unsigned NOT NULL auto_increment COMMENT 'Identifier',
`username` varchar(32) NOT NULL default '',
@@ -55,12 +60,13 @@ CREATE TABLE `account` (
`locked` tinyint(3) unsigned NOT NULL default '0',
`last_login` timestamp NOT NULL default '0000-00-00 00:00:00',
`online` tinyint(4) NOT NULL default '0',
- `expansion` tinyint(3) unsigned NOT NULL default '0',
+ `expansion` tinyint(3) unsigned NOT NULL default '2',
`mutetime` bigint(40) unsigned NOT NULL default '0',
`locale` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_username` (`username`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci ROW_FORMAT=DYNAMIC COMMENT='Account System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account`
@@ -68,11 +74,6 @@ CREATE TABLE `account` (
LOCK TABLES `account` WRITE;
/*!40000 ALTER TABLE `account` DISABLE KEYS */;
-/*INSERT INTO `account` VALUES
-(1,'ADMINISTRATOR','a34b29541b87b7e4823683ce6c7bf6ae68beaaac',','0','0','','2006-04-25 10:18:56','127.0.0.1',0,0,'0000-00-00 00:00:00',0,0,0,0),
-(2,'GAMEMASTER','7841e21831d7c6bc0b57fbe7151eb82bd65ea1f9',','0','0','','2006-04-25 10:18:56','127.0.0.1',0,0,'0000-00-00 00:00:00',0,0,0,0),
-(3,'MODERATOR','a7f5fbff0b4eec2d6b6e78e38e8312e64d700008',','0','0','','2006-04-25 10:19:35','127.0.0.1',0,0,'0000-00-00 00:00:00',0,0,0,0),
-(4,'PLAYER','3ce8a96d17c5ae88a30681024e86279f1a38c041','','0','0','','2006-04-25 10:19:35','127.0.0.1',0,0,'0000-00-00 00:00:00',0,0,0,0);*/
/*!40000 ALTER TABLE `account` ENABLE KEYS */;
UNLOCK TABLES;
@@ -81,6 +82,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `account_banned`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_banned` (
`id` int(11) NOT NULL default '0' COMMENT 'Account id',
`bandate` bigint(40) NOT NULL default '0',
@@ -90,6 +93,7 @@ CREATE TABLE `account_banned` (
`active` tinyint(4) NOT NULL default '1',
PRIMARY KEY (`id`,`bandate`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Ban List';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account_banned`
@@ -105,6 +109,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `ip_banned`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ip_banned` (
`ip` varchar(32) NOT NULL default '127.0.0.1',
`bandate` bigint(40) NOT NULL,
@@ -113,6 +119,7 @@ CREATE TABLE `ip_banned` (
`banreason` varchar(255) NOT NULL default 'no reason',
PRIMARY KEY (`ip`,`bandate`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Banned IPs';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ip_banned`
@@ -128,12 +135,15 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `logs`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `logs` (
`time` int(14) NOT NULL,
`realm` int(4) NOT NULL,
`type` int(4) NOT NULL,
`string` text
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `logs`
@@ -149,6 +159,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `realmcharacters`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `realmcharacters` (
`realmid` int(11) unsigned NOT NULL default '0',
`acctid` bigint(20) unsigned NOT NULL,
@@ -156,6 +168,7 @@ CREATE TABLE `realmcharacters` (
PRIMARY KEY (`realmid`,`acctid`),
KEY (acctid)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Realm Character Tracker';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `realmcharacters`
@@ -171,6 +184,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `realmlist`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `realmlist` (
`id` int(11) unsigned NOT NULL auto_increment,
`name` varchar(32) NOT NULL default '',
@@ -185,6 +200,7 @@ CREATE TABLE `realmlist` (
PRIMARY KEY (`id`),
UNIQUE KEY `idx_name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Realm System';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `realmlist`
@@ -192,8 +208,8 @@ CREATE TABLE `realmlist` (
LOCK TABLES `realmlist` WRITE;
/*!40000 ALTER TABLE `realmlist` DISABLE KEYS */;
-INSERT INTO `realmlist` VALUES
-(1,'Trinity','127.0.0.1',8085,1,0,1,0,0, 10505);
+INSERT INTO `realmlist` (`id`,`name`,`address`,`port`,`icon`,`color`,`timezone`,`allowedSecurityLevel`,`population`,`gamebuild`) VALUES
+(1,'Trinity','127.0.0.1',8085,1,0,1,0,0,10505);
/*!40000 ALTER TABLE `realmlist` ENABLE KEYS */;
UNLOCK TABLES;
@@ -202,6 +218,8 @@ UNLOCK TABLES;
--
DROP TABLE IF EXISTS `uptime`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `uptime` (
`realmid` int(11) unsigned NOT NULL,
`starttime` bigint(20) unsigned NOT NULL default '0',
@@ -211,6 +229,7 @@ CREATE TABLE `uptime` (
`revision` VARCHAR(255) NOT NULL DEFAULT 'Trinitycore',
PRIMARY KEY (`realmid`,`starttime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Uptime system';
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `uptime`
@@ -231,3 +250,5 @@ UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2008-01-10 11:37:06
+
+-- Updated on 2010-01-29 23:21:45 GMT+1
diff --git a/sql/updates/7229_world_creature_template.sql b/sql/updates/7229_world_scriptname.sql
index c52d7091bff..c52d7091bff 100644
--- a/sql/updates/7229_world_creature_template.sql
+++ b/sql/updates/7229_world_scriptname.sql
diff --git a/sql/updates/7245_world_command.sql b/sql/updates/7246_world_command.sql
index 7fc9a2ed371..7fc9a2ed371 100644
--- a/sql/updates/7245_world_command.sql
+++ b/sql/updates/7246_world_command.sql
diff --git a/sql/updates/7279_realmd_account.sql b/sql/updates/7279_realmd_account.sql
new file mode 100644
index 00000000000..c8981d44afd
--- /dev/null
+++ b/sql/updates/7279_realmd_account.sql
@@ -0,0 +1 @@
+ALTER TABLE `account` CHANGE COLUMN `expansion` `expansion` tinyint(3) unsigned NOT NULL DEFAULT '2';
diff --git a/sql/updates/7279_world_creature_template.sql b/sql/updates/7279_world_creature_template.sql
new file mode 100644
index 00000000000..c866a69c5e9
--- /dev/null
+++ b/sql/updates/7279_world_creature_template.sql
@@ -0,0 +1,2 @@
+ALTER TABLE `creature_template` CHANGE COLUMN `Health_mod` `Health_mod` float NOT NULL DEFAULT '1';
+ALTER TABLE `creature_template` CHANGE COLUMN `Mana_mod` `Mana_mod` float NOT NULL DEFAULT '1';
diff --git a/sql/updates/7279_world_gameobject_template.sql b/sql/updates/7279_world_gameobject_template.sql
new file mode 100644
index 00000000000..34581fcf272
--- /dev/null
+++ b/sql/updates/7279_world_gameobject_template.sql
@@ -0,0 +1 @@
+ALTER TABLE `gameobject_template` CHANGE COLUMN `data6` `data6` INT(11) SIGNED NOT NULL DEFAULT '-1'
diff --git a/sql/updates/7279_world_item_template.sql b/sql/updates/7279_world_item_template.sql
new file mode 100644
index 00000000000..335f1036d88
--- /dev/null
+++ b/sql/updates/7279_world_item_template.sql
@@ -0,0 +1,11 @@
+ALTER TABLE `item_template` CHANGE COLUMN `AllowableClass` `AllowableClass` int(11) NOT NULL DEFAULT '-1';
+ALTER TABLE `item_template` CHANGE COLUMN `AllowableRace` `AllowableRace` int(11) NOT NULL DEFAULT '-1';
+ALTER TABLE `item_template` CHANGE COLUMN `Flags` `Flags` bigint(20) NOT NULL DEFAULT '0';
+ALTER TABLE `item_template` CHANGE COLUMN `BuyPrice` `BuyPrice` bigint(20) NOT NULL DEFAULT '0';
+ALTER TABLE `item_template` CHANGE COLUMN `maxcount` `maxcount` int(11) NOT NULL DEFAULT '0';
+ALTER TABLE `item_template` CHANGE COLUMN `spellid_1` `spellid_1` mediumint(8) NOT NULL DEFAULT '0';
+ALTER TABLE `item_template` CHANGE COLUMN `spellid_2` `spellid_2` mediumint(8) NOT NULL DEFAULT '0';
+ALTER TABLE `item_template` CHANGE COLUMN `spellid_3` `spellid_3` mediumint(8) NOT NULL DEFAULT '0';
+ALTER TABLE `item_template` CHANGE COLUMN `spellid_4` `spellid_4` mediumint(8) NOT NULL DEFAULT '0';
+ALTER TABLE `item_template` CHANGE COLUMN `spellid_5` `spellid_5` mediumint(8) NOT NULL DEFAULT '0';
+ALTER TABLE `item_template` CHANGE COLUMN `RandomProperty` `RandomProperty` mediumint(8) NOT NULL DEFAULT '0';
diff --git a/sql/updates/7279_world_pool_creature.sql b/sql/updates/7279_world_pool_creature.sql
new file mode 100644
index 00000000000..e087ad088ac
--- /dev/null
+++ b/sql/updates/7279_world_pool_creature.sql
@@ -0,0 +1,2 @@
+ALTER TABLE `pool_creature` CHANGE COLUMN `comment` `comment` varchar(255) DEFAULT NULL;
+ALTER TABLE `pool_creature` CHANGE COLUMN `description` `description` varchar(255) DEFAULT NULL;
diff --git a/sql/updates/7279_world_pool_gameobject.sql b/sql/updates/7279_world_pool_gameobject.sql
new file mode 100644
index 00000000000..c24a4a8f964
--- /dev/null
+++ b/sql/updates/7279_world_pool_gameobject.sql
@@ -0,0 +1 @@
+ALTER TABLE `pool_gameobject` CHANGE COLUMN `description` `description` varchar(255) DEFAULT NULL;
diff --git a/sql/updates/7279_world_pool_pool.sql b/sql/updates/7279_world_pool_pool.sql
new file mode 100644
index 00000000000..ab96f4c6f2a
--- /dev/null
+++ b/sql/updates/7279_world_pool_pool.sql
@@ -0,0 +1 @@
+ALTER TABLE `pool_pool` CHANGE COLUMN `description` `description` varchar(255) DEFAULT NULL;
diff --git a/sql/updates/7279_world_pool_template.sql b/sql/updates/7279_world_pool_template.sql
new file mode 100644
index 00000000000..2ce997b9379
--- /dev/null
+++ b/sql/updates/7279_world_pool_template.sql
@@ -0,0 +1,2 @@
+ALTER TABLE `pool_template` CHANGE COLUMN `description` `description` varchar(255) DEFAULT NULL;
+ALTER TABLE `pool_template` CHANGE COLUMN `comment` `comment` varchar(255) DEFAULT NULL;
diff --git a/sql/updates/7279_world_quest_template.sql b/sql/updates/7279_world_quest_template.sql
new file mode 100644
index 00000000000..ea687b5eb15
--- /dev/null
+++ b/sql/updates/7279_world_quest_template.sql
@@ -0,0 +1,2 @@
+ALTER TABLE `quest_template` CHANGE COLUMN `QuestLevel` `QuestLevel` smallint(3) NOT NULL default '1';
+ALTER TABLE `quest_template` CHANGE COLUMN `RewSpellCast` `RewSpellCast` int(11) NOT NULL DEFAULT '0';
diff --git a/sql/world.sql b/sql/world.sql
index 27bc5244405..6f0961e6d87 100644
--- a/sql/world.sql
+++ b/sql/world.sql
@@ -2743,14 +2743,14 @@ CREATE TABLE `item_template` (
`name` varchar(255) NOT NULL DEFAULT '',
`displayid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`Quality` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `Flags` int(10) signed NOT NULL DEFAULT '0',
+ `Flags` bigint(20) signed NOT NULL DEFAULT '0',
`Faction` int(11) unsigned NOT NULL DEFAULT '0',
`BuyCount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `BuyPrice` int(10) signed NOT NULL DEFAULT '0',
+ `BuyPrice` bigint(20) signed NOT NULL DEFAULT '0',
`SellPrice` int(10) unsigned NOT NULL DEFAULT '0',
`InventoryType` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `AllowableClass` int(11) NOT NULL,
- `AllowableRace` int(11) NOT NULL,
+ `AllowableClass` int(11) NOT NULL DEFAULT '-1',
+ `AllowableRace` int(11) NOT NULL DEFAULT '-1',
`ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0',
`RequiredLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
`RequiredSkill` smallint(5) unsigned NOT NULL DEFAULT '0',
@@ -2760,7 +2760,7 @@ CREATE TABLE `item_template` (
`RequiredCityRank` mediumint(8) unsigned NOT NULL DEFAULT '0',
`RequiredReputationFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
`RequiredReputationRank` smallint(5) unsigned NOT NULL DEFAULT '0',
- `maxcount` int(11) signed NOT NULL DEFAULT '-1',
+ `maxcount` int(11) signed NOT NULL DEFAULT '0',
`stackable` int(11) signed NOT NULL DEFAULT '1',
`ContainerSlots` tinyint(3) unsigned NOT NULL DEFAULT '0',
`StatsCount` tinyint(3) unsigned NOT NULL DEFAULT '0',
@@ -4051,8 +4051,8 @@ CREATE TABLE `pool_creature` (
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float unsigned NOT NULL DEFAULT '0',
- `comment` varchar(255) NOT NULL,
- `description` varchar(255) NOT NULL,
+ `comment` varchar(255) DEFAULT NULL,
+ `description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`pool_entry`,`guid`),
KEY `idx_guid` (`guid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
@@ -4078,7 +4078,7 @@ CREATE TABLE `pool_gameobject` (
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float unsigned NOT NULL DEFAULT '0',
- `description` varchar(255) NOT NULL,
+ `description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`guid`,`pool_entry`),
KEY `idx_guid` (`guid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
@@ -4104,7 +4104,7 @@ CREATE TABLE `pool_pool` (
`pool_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`mother_pool` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float NOT NULL DEFAULT '0',
- `description` varchar(255) NOT NULL,
+ `description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`pool_id`,`mother_pool`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -4128,8 +4128,8 @@ DROP TABLE IF EXISTS `pool_template`;
CREATE TABLE `pool_template` (
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Pool entry',
`max_limit` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Max number of objects (0) is no limit',
- `comment` varchar(255) NOT NULL,
- `description` varchar(255) NOT NULL,
+ `comment` varchar(255) DEFAULT NULL,
+ `description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`entry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -4247,7 +4247,7 @@ CREATE TABLE `quest_template` (
`ZoneOrSort` smallint(6) NOT NULL DEFAULT '0',
`SkillOrClass` smallint(6) NOT NULL DEFAULT '0',
`MinLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `QuestLevel` smallint(3) DEFAULT NULL,
+ `QuestLevel` smallint(3) NOT NULL DEFAULT '1',
`Type` smallint(5) unsigned NOT NULL DEFAULT '0',
`RequiredRaces` smallint(5) unsigned NOT NULL DEFAULT '0',
`RequiredSkillValue` smallint(5) unsigned NOT NULL DEFAULT '0',