-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
669 additions
and
320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.9.167 | ||
0.9.168 |
4 changes: 4 additions & 0 deletions
4
Database/Updates/Shard/2020-04-07-00-Add-Order-To-Biota-Properties-Palette.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
USE ace_shard; | ||
|
||
ALTER TABLE `biota_properties_palette` | ||
ADD COLUMN `order` TINYINT(3) UNSIGNED NULL DEFAULT NULL AFTER `length`; |
23 changes: 23 additions & 0 deletions
23
Database/Updates/Shard/2020-04-11-00-Update-Character-SpellBars.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
USE ace_shard; | ||
|
||
ALTER TABLE `character_properties_spell_bar` | ||
DROP FOREIGN KEY `wcid_spellbar`; | ||
ALTER TABLE `character_properties_spell_bar` | ||
DROP INDEX `wcid_spellbar_barId_spellId_uidx`; | ||
|
||
UPDATE character_properties_spell_bar | ||
SET spell_Bar_Number = spell_Bar_Number + 1, | ||
spell_Bar_Index = spell_Bar_Index + 1 | ||
WHERE id > 0; | ||
|
||
ALTER TABLE `character_properties_spell_bar` | ||
DROP COLUMN `id`, | ||
DROP PRIMARY KEY, | ||
ADD PRIMARY KEY (`character_Id`, `spell_Bar_Number`, `spell_Id`), | ||
ADD INDEX `spellBar_idx` (`spell_Bar_Index` ASC); | ||
|
||
ALTER TABLE `character_properties_spell_bar` | ||
ADD CONSTRAINT `characterId_spellbar` | ||
FOREIGN KEY (`character_Id`) | ||
REFERENCES `character` (`id`) | ||
ON DELETE CASCADE; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.