mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 02:20:27 +00:00
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:
10
data/sql/updates/pending_db_world/fix-it-please.sql
Normal file
10
data/sql/updates/pending_db_world/fix-it-please.sql
Normal 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`;
|
||||
Reference in New Issue
Block a user