diff options
| author | Roc13x <roc13x@gmail.com> | 2018-04-18 16:41:23 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2018-04-18 18:41:23 +0300 |
| commit | cd5a704fc1629d5f606535b3756195fb311b5ef2 (patch) | |
| tree | 9c547af43db7b5c20156ffc2a9034cbb4ff9e850 /sql | |
| parent | 3ee4c58176e85d461d9f9fd8dacd11a216a57783 (diff) | |
Core/Items: Implemented ItemLimitCategoryCondition.db2 (#21835)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2018_04_18_00_hotfixes.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2018_04_18_00_hotfixes.sql b/sql/updates/hotfixes/master/2018_04_18_00_hotfixes.sql new file mode 100644 index 00000000000..669723989bb --- /dev/null +++ b/sql/updates/hotfixes/master/2018_04_18_00_hotfixes.sql @@ -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; |
