aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-09-07 18:03:33 +0200
committerShauren <shauren.trinity@gmail.com>2015-09-07 18:03:33 +0200
commit8a8ab0b4b681b45189330c1e5c382aa6fb968aa4 (patch)
treea845b14987553d1fccaaf49ebabf215e3dd60d8e /sql
parent0098e98c69612151b16383b2ab9a9f57c72f50db (diff)
Core/DataStores: Updated DBC and DB2 structures to 6.2.2.20444
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/2015_09_07_00_hotfixes.sql109
1 files changed, 109 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/2015_09_07_00_hotfixes.sql b/sql/updates/hotfixes/2015_09_07_00_hotfixes.sql
new file mode 100644
index 00000000000..f9a5897e8b6
--- /dev/null
+++ b/sql/updates/hotfixes/2015_09_07_00_hotfixes.sql
@@ -0,0 +1,109 @@
+--
+-- Table structure for table `achievement`
+--
+
+DROP TABLE IF EXISTS `achievement`;
+CREATE TABLE `achievement` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Faction` int(11) NOT NULL DEFAULT '0',
+ `MapID` int(11) NOT NULL DEFAULT '0',
+ `Supercedes` int(10) unsigned NOT NULL DEFAULT '0',
+ `Title` text,
+ `Description` text,
+ `Category` int(10) unsigned NOT NULL DEFAULT '0',
+ `Points` int(10) unsigned NOT NULL DEFAULT '0',
+ `UIOrder` int(10) unsigned NOT NULL DEFAULT '0',
+ `Flags` int(10) unsigned NOT NULL DEFAULT '0',
+ `IconID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Reward` text,
+ `MinimumCriteria` int(10) unsigned NOT NULL DEFAULT '0',
+ `SharesCriteria` int(10) unsigned NOT NULL DEFAULT '0',
+ `CriteriaTree` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `achievement_locale`
+--
+
+DROP TABLE IF EXISTS `achievement_locale`;
+CREATE TABLE `achievement_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `Title_lang` text,
+ `Description_lang` text,
+ `Reward_lang` text,
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `criteria`
+--
+
+DROP TABLE IF EXISTS `criteria`;
+CREATE TABLE `criteria` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Type` int(10) unsigned NOT NULL DEFAULT '0',
+ `Asset` int(10) unsigned NOT NULL DEFAULT '0',
+ `StartEvent` int(10) unsigned NOT NULL DEFAULT '0',
+ `StartAsset` int(10) unsigned NOT NULL DEFAULT '0',
+ `StartTimer` int(10) unsigned NOT NULL DEFAULT '0',
+ `FailEvent` int(10) unsigned NOT NULL DEFAULT '0',
+ `FailAsset` int(10) unsigned NOT NULL DEFAULT '0',
+ `ModifierTreeId` int(10) unsigned NOT NULL DEFAULT '0',
+ `Flags` int(10) unsigned NOT NULL DEFAULT '0',
+ `EligibilityWorldStateID` int(10) unsigned NOT NULL DEFAULT '0',
+ `EligibilityWorldStateValue` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `criteria_tree`
+--
+
+DROP TABLE IF EXISTS `criteria_tree`;
+CREATE TABLE `criteria_tree` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `CriteriaID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Amount` bigint(20) unsigned NOT NULL DEFAULT '0',
+ `Operator` int(10) unsigned NOT NULL DEFAULT '0',
+ `Parent` int(10) unsigned NOT NULL DEFAULT '0',
+ `Flags` int(10) unsigned NOT NULL DEFAULT '0',
+ `Description` text,
+ `OrderIndex` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `criteria_tree_locale`
+--
+
+DROP TABLE IF EXISTS `criteria_tree_locale`;
+CREATE TABLE `criteria_tree_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `Description_lang` text,
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `modifier_tree`
+--
+
+DROP TABLE IF EXISTS `modifier_tree`;
+CREATE TABLE `modifier_tree` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Type` int(10) unsigned NOT NULL DEFAULT '0',
+ `Asset1` int(10) unsigned NOT NULL DEFAULT '0',
+ `Asset2` int(10) unsigned NOT NULL DEFAULT '0',
+ `Operator` int(10) unsigned NOT NULL DEFAULT '0',
+ `Amount` int(10) unsigned NOT NULL DEFAULT '0',
+ `Parent` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;