Core/Items: Implement azerite empowered items
Port From (https://github.com/TrinityCore/TrinityCore/commit/d934824421c83598853487c5cc9e4cbb3c5d0006)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
ALTER TABLE `characters` ADD `numRespecs` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `resettalents_time`;
|
||||
|
||||
--
|
||||
-- Table structure for table `item_instance_azerite_empowered`
|
||||
--
|
||||
DROP TABLE IF EXISTS `item_instance_azerite_empowered`;
|
||||
CREATE TABLE `item_instance_azerite_empowered` (
|
||||
`itemGuid` bigint(20) unsigned NOT NULL,
|
||||
`azeritePowerId1` int(11) NOT NULL,
|
||||
`azeritePowerId2` int(11) NOT NULL,
|
||||
`azeritePowerId3` int(11) NOT NULL,
|
||||
`azeritePowerId4` int(11) NOT NULL,
|
||||
`azeritePowerId5` int(11) NOT NULL,
|
||||
PRIMARY KEY (`itemGuid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user