TDB 6.03 - 2015/11/08

This commit is contained in:
Carbenium
2015-11-08 01:36:49 +01:00
parent 3dde44cf64
commit 271390753d
385 changed files with 104 additions and 83 deletions

View File

@@ -0,0 +1 @@
UPDATE `battlenet_components` SET `Build`=20253 WHERE `Program`='WoW' AND `Platform` IN ('Mc64','Win','Wn64') AND `Build`=20216;

View File

@@ -0,0 +1 @@
UPDATE `battlenet_components` SET `Build`=20338 WHERE `Program`='WoW' AND `Platform` IN ('Mc64','Win','Wn64') AND `Build`=20253;

View File

@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `battlenet_account_toys`;
CREATE TABLE `battlenet_account_toys` (
`accountId` int(10) unsigned NOT NULL,
`itemId` int(11) NOT NULL DEFAULT '0',
`isFavourite` tinyint(1) DEFAULT '0',
PRIMARY KEY (`accountId`,`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

View File

@@ -0,0 +1,2 @@
UPDATE `battlenet_components` SET `Build`=20444 WHERE `Program`='WoW' AND `Platform` IN ('Mc64','Win','Wn64') AND `Build`=20444;
UPDATE `realmlist` SET `gamebuild`=20444 WHERE `gamebuild`=20182;

View File

@@ -0,0 +1,2 @@
UPDATE `battlenet_components` SET `Build`=20444 WHERE `Program`='WoW' AND `Platform`='base' AND `Build`=20182;
UPDATE `battlenet_components` SET `Build`=20444 WHERE `Program`='WoW' AND `Platform` IN ('Mc64','Win','Wn64') AND `Build`=20338;

View File

@@ -0,0 +1,31 @@
--
-- Table structure for table `battle_pets`
--
DROP TABLE IF EXISTS `battle_pets`;
CREATE TABLE `battle_pets` (
`guid` bigint(20) NOT NULL,
`battlenetAccountId` int(10) NOT NULL,
`species` int(10) NOT NULL,
`breed` smallint(5) NOT NULL,
`level` smallint(5) NOT NULL DEFAULT '1',
`exp` smallint(5) NOT NULL DEFAULT '0',
`health` int(10) NOT NULL DEFAULT '1',
`quality` tinyint(3) NOT NULL DEFAULT '0',
`flags` smallint(5) NOT NULL DEFAULT '0',
`name` varchar(12) NOT NULL,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `battle_pet_slots`
--
DROP TABLE IF EXISTS `battle_pet_slots`;
CREATE TABLE `battle_pet_slots` (
`id` tinyint(3) NOT NULL,
`battlenetAccountId` int(10) NOT NULL,
`battlePetGuid` bigint(20) NOT NULL,
`locked` tinyint(3) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`,`battlenetAccountId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -0,0 +1,4 @@
UPDATE `battlenet_components` SET `Build`=20490 WHERE `Program`='WoW' AND `Platform`='base' AND `Build`=20444;
UPDATE `battlenet_components` SET `Build`=20490 WHERE `Program`='WoW' AND `Platform` IN ('Mc64','Win','Wn64') AND `Build`=20444;
UPDATE `realmlist` SET `gamebuild`=20490 WHERE `gamebuild`=20444;

View File

@@ -0,0 +1,4 @@
UPDATE `battlenet_components` SET `Build`=20574 WHERE `Program`='WoW' AND `Platform`='base' AND `Build`=20490;
UPDATE `battlenet_components` SET `Build`=20574 WHERE `Program`='WoW' AND `Platform` IN ('Mc64','Win','Wn64') AND `Build`=20490;
UPDATE `realmlist` SET `gamebuild`=20574 WHERE `gamebuild`=20490;

View File

@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `battlenet_account_heirlooms`;
CREATE TABLE `battlenet_account_heirlooms` (
`accountId` int(10) unsigned NOT NULL,
`itemId` int(11) unsigned NOT NULL DEFAULT '0',
`flags` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`accountId`,`itemId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -0,0 +1 @@
ALTER TABLE `battlenet_account_toys` ENGINE=InnoDB;

View File

@@ -0,0 +1,5 @@
DELETE FROM `rbac_permissions` WHERE `id` = 835;
INSERT INTO `rbac_permissions` (`id`, `name`) VALUES (835, 'Command: debug loadcells');
DELETE FROM `rbac_linked_permissions` WHERE `id` = 192 AND `linkedId` = 835;
INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES (192, 835);