aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2020-03-26 20:09:40 +0100
committerShauren <shauren.trinity@gmail.com>2020-03-26 20:09:40 +0100
commit0969e93d151533fa8a74bb88b04ab8ee7c4602d9 (patch)
tree646fa8391ccb1fb8449621dfd6009c1381033750 /sql
parentf2a9da7b4961bae6d8130301ab1d79fd28c75cb2 (diff)
Core/DataStore: Load ItemNameDescription
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/master/2020_03_26_00_hotfixes.sql23
1 files changed, 23 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2020_03_26_00_hotfixes.sql b/sql/updates/hotfixes/master/2020_03_26_00_hotfixes.sql
new file mode 100644
index 00000000000..808075ed1e6
--- /dev/null
+++ b/sql/updates/hotfixes/master/2020_03_26_00_hotfixes.sql
@@ -0,0 +1,23 @@
+--
+-- Table structure for table `item_name_description`
+--
+DROP TABLE IF EXISTS `item_name_description`;
+CREATE TABLE `item_name_description` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Description` text,
+ `Color` int(11) NOT NULL DEFAULT '0',
+ `VerifiedBuild` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `item_name_description_locale`
+--
+DROP TABLE IF EXISTS `item_name_description_locale`;
+CREATE TABLE `item_name_description_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `Description_lang` text,
+ `VerifiedBuild` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;