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
This commit is contained in:
Benjamin Jackson
2022-09-23 17:48:29 -04:00
committed by GitHub
parent 8fc055e44e
commit bb7e38b977

View File

@@ -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`;