aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorRyan <roc13x@gmail.com>2017-09-15 20:23:41 +0100
committerShauren <shauren.trinity@gmail.com>2017-09-15 21:23:41 +0200
commit115dffde983019acb1f167583b60f0ce1aaa90de (patch)
tree6713a964debd945ef472cdbe86320c330a1e6395 /sql
parent6eb997394722fcd4b5248646b5abfa185a7ec58f (diff)
Core/Items: Implement ItemLevelSelector.db2 (#20325)
ItemLevelSelector replaced ITEM_BONUS_ITEM_LEVEL_OVERRIDE in 7.2
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/master/2017_09_15_00_hotfixes.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2017_09_15_00_hotfixes.sql b/sql/updates/hotfixes/master/2017_09_15_00_hotfixes.sql
new file mode 100644
index 00000000000..c3ad0b8de7f
--- /dev/null
+++ b/sql/updates/hotfixes/master/2017_09_15_00_hotfixes.sql
@@ -0,0 +1,10 @@
+--
+-- Table structure for table `item_level_selector`
+--
+DROP TABLE IF EXISTS `item_level_selector`;
+CREATE TABLE `item_level_selector` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;