chore(DB): import pending SQL update file

Referenced commit(s): f1b43a8976
This commit is contained in:
AzerothCoreBot
2021-05-28 00:11:21 +00:00
parent f1b43a8976
commit 8ee35817e5
2 changed files with 31 additions and 6 deletions

View File

@@ -1,6 +0,0 @@
INSERT INTO `version_db_characters` (`sql_rev`) VALUES ('1622121508190340200');
-- Set fist weapon skill equal to current unarmed skill value
UPDATE `character_skills` `cs_unarmed` INNER JOIN `character_skills` `cs_fist` ON `cs_unarmed`.`guid` = `cs_fist`.`guid`
SET `cs_fist`.`value` = `cs_unarmed`.`value`, `cs_fist`.`max` = `cs_unarmed`.`max`
WHERE `cs_unarmed`.`skill` = 162 AND `cs_fist`.`skill` = 473;