Core/Items: Implement ItemLevelSelector.db2 (#20325)

ItemLevelSelector replaced ITEM_BONUS_ITEM_LEVEL_OVERRIDE in 7.2
This commit is contained in:
Ryan
2017-09-15 20:23:41 +01:00
committed by Shauren
parent 6eb9973947
commit 115dffde98
9 changed files with 72 additions and 26 deletions

View File

@@ -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;