From c0e3b0bb98c696f2573b83a0d1d09e5d6dbcc696 Mon Sep 17 00:00:00 2001 From: Vincent-Michael Date: Mon, 6 Apr 2015 21:47:22 +0200 Subject: DB/Hotfixes: Added chr_upgrade_* table --- sql/updates/hotfixes/2015_04_06_03_hotfixes.sql | 33 +++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 sql/updates/hotfixes/2015_04_06_03_hotfixes.sql (limited to 'sql') diff --git a/sql/updates/hotfixes/2015_04_06_03_hotfixes.sql b/sql/updates/hotfixes/2015_04_06_03_hotfixes.sql new file mode 100644 index 00000000000..936a600f885 --- /dev/null +++ b/sql/updates/hotfixes/2015_04_06_03_hotfixes.sql @@ -0,0 +1,33 @@ +DROP TABLE IF EXISTS `chr_upgrade_tier`; +CREATE TABLE IF NOT EXISTS `chr_upgrade_tier` ( + `ID` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `TierIndex` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `Name` TEXT, + `TalentTier` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `VerifiedBuild` SMALLINT(6) NOT NULL DEFAULT '0' +) ENGINE=MYISAM DEFAULT CHARSET=utf8; + +ALTER TABLE `chr_upgrade_tier` + ADD PRIMARY KEY (`ID`); + +DROP TABLE IF EXISTS `chr_upgrade_bucket`; +CREATE TABLE IF NOT EXISTS `chr_upgrade_bucket` ( + `ID` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `TierID` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `SpecializationID` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `VerifiedBuild` SMALLINT(6) NOT NULL DEFAULT '0' +) ENGINE=MYISAM DEFAULT CHARSET=utf8; + +ALTER TABLE `chr_upgrade_bucket` + ADD PRIMARY KEY (`ID`); + +DROP TABLE IF EXISTS `chr_upgrade_bucket_spell`; +CREATE TABLE IF NOT EXISTS `chr_upgrade_bucket_spell` ( + `ID` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `BucketID` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `SpellID` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `VerifiedBuild` SMALLINT(6) NOT NULL DEFAULT '0' +) ENGINE=MYISAM DEFAULT CHARSET=utf8; + +ALTER TABLE `chr_upgrade_bucket_spell` + ADD PRIMARY KEY (`ID`); -- cgit v1.2.3