Core/Items: Set and save item context field

This commit is contained in:
Shauren
2017-05-08 23:56:07 +02:00
parent 0936b01895
commit 8fc527f404
19 changed files with 116 additions and 83 deletions

View File

@@ -0,0 +1,7 @@
ALTER TABLE `item_instance` ADD `context` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `battlePetDisplayId`;
ALTER TABLE `character_void_storage` ADD `context` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `artifactKnowledgeLevel`;
ALTER TABLE `item_loot_items`
ADD `context` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `rnd_suffix`,
ADD `bonus_list_ids` text COMMENT 'Space separated list of bonus list ids' AFTER `context`;