From 115dffde983019acb1f167583b60f0ce1aaa90de Mon Sep 17 00:00:00 2001 From: Ryan Date: Fri, 15 Sep 2017 20:23:41 +0100 Subject: Core/Items: Implement ItemLevelSelector.db2 (#20325) ItemLevelSelector replaced ITEM_BONUS_ITEM_LEVEL_OVERRIDE in 7.2 --- sql/updates/hotfixes/master/2017_09_15_00_hotfixes.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sql/updates/hotfixes/master/2017_09_15_00_hotfixes.sql (limited to 'sql') 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; -- cgit v1.2.3