aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/characters
diff options
context:
space:
mode:
Diffstat (limited to 'sql/updates/characters')
-rw-r--r--sql/updates/characters/master/2019_12_05_00_characters.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/characters/master/2019_12_05_00_characters.sql b/sql/updates/characters/master/2019_12_05_00_characters.sql
new file mode 100644
index 00000000000..647ce02ec86
--- /dev/null
+++ b/sql/updates/characters/master/2019_12_05_00_characters.sql
@@ -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;