mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Items: Implemented ItemLimitCategoryCondition.db2 (#21835)
This commit is contained in:
12
sql/updates/hotfixes/master/2018_04_18_00_hotfixes.sql
Normal file
12
sql/updates/hotfixes/master/2018_04_18_00_hotfixes.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
--
|
||||
-- Table structure for table `item_limit_category_condition`
|
||||
--
|
||||
DROP TABLE IF EXISTS `item_limit_category_condition`;
|
||||
CREATE TABLE `item_limit_category_condition` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`AddQuantity` tinyint(3) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ParentItemLimitCategoryID` int(10) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user