From bb7e38b97781064c2abc39aa267ca8c1232a4e88 Mon Sep 17 00:00:00 2001 From: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Date: Fri, 23 Sep 2022 17:48:29 -0400 Subject: [PATCH] fix(DB/skilllineability_dbc): Correct structure of skilllineability_dbc (#13088) * Create blackrock-drakes.sql * Guess I guess * get rid of it it's not funny anymore * slap that bad boy on there * get rid of it because i'm not a comedian * Testing * no test * for the good of all things skillful --- data/sql/updates/pending_db_world/fix-it-please.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 data/sql/updates/pending_db_world/fix-it-please.sql diff --git a/data/sql/updates/pending_db_world/fix-it-please.sql b/data/sql/updates/pending_db_world/fix-it-please.sql new file mode 100644 index 000000000..d1b17f9e1 --- /dev/null +++ b/data/sql/updates/pending_db_world/fix-it-please.sql @@ -0,0 +1,10 @@ +ALTER TABLE `skilllineability_dbc` + CHANGE `MinSkillLineRank` `ExcludeRace` INT NOT NULL DEFAULT 0, + CHANGE `SupercededBySpell` `ExcludeClass` INT NOT NULL DEFAULT 0, + CHANGE `AcquireMethod` `MinSkillLineRank` INT NOT NULL DEFAULT 0, + CHANGE `TrivialSkillLineRankHigh` `SupercededBySpell` INT NOT NULL DEFAULT 0, + CHANGE `TrivialSkillLineRankLow` `AcquireMethod` INT NOT NULL DEFAULT 0, + CHANGE `CharacterPoints_1` `TrivialSkillLineRankHigh` INT NOT NULL DEFAULT 0, + CHANGE `CharacterPoints_2` `TrivialSkillLineRankLow` INT NOT NULL DEFAULT 0, + CHANGE `TradeSkillCategoryID` `CharacterPoints_1` INT NOT NULL DEFAULT 0, + ADD COLUMN `CharacterPoints_2` INT NOT NULL DEFAULT 0 AFTER `CharacterPoints_1`;