Implement Appearance Collection system

This commit is contained in:
郑佩茹
2022-02-24 15:55:46 -07:00
parent f7f89942c7
commit 03178103b0
5 changed files with 198 additions and 35 deletions

View File

@@ -18,3 +18,9 @@ CREATE TABLE IF NOT EXISTS `custom_transmogrification_sets` (
`SetData` text COMMENT 'Slot1 Entry1 Slot2 Entry2',
PRIMARY KEY (`Owner`,`PresetID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='6_1';
CREATE TABLE IF NOT EXISTS `custom_transmog_unlocked_appearances` (
`account_id` int(10) unsigned NOT NULL,
`item_template_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`account_id`, `item_template_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8;