-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Pack 407, for CMaNGOS 12670 for 3.3.5a, SQL for ScripDev2 3041. Lots of NPCs, Quests, gossips, items, events and Instances were fixed. Please, read the CHANGELOG.txt file for list of changes. Thanks to all the contributors for their reports, fixes and tests.
- Loading branch information
Showing
7 changed files
with
16,547 additions
and
7 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
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
21 changes: 21 additions & 0 deletions
21
Current_Release/Updates/407_corepatch_characters_12445_to_12670.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,21 @@ | ||
-- 12487 | ||
ALTER TABLE character_db_version CHANGE COLUMN required_12339_02_characters_calendar_invites required_12487_01_characters_characters bit; | ||
|
||
UPDATE characters SET drunk = (drunk / 256) & 0xFF; | ||
|
||
ALTER TABLE characters CHANGE drunk drunk tinyint(3) unsigned NOT NULL DEFAULT '0'; | ||
|
||
-- 12562 | ||
ALTER TABLE character_db_version CHANGE COLUMN required_12487_01_characters_characters required_12562_01_characters_various_tables bit; | ||
|
||
ALTER TABLE character_queststatus_daily DROP INDEX idx_guid; | ||
ALTER TABLE character_queststatus_monthly DROP INDEX idx_guid; | ||
ALTER TABLE character_queststatus_weekly DROP INDEX idx_guid; | ||
ALTER TABLE character_social DROP INDEX friend; | ||
ALTER TABLE character_social DROP INDEX guid; | ||
ALTER TABLE character_talent DROP INDEX guid_key; | ||
ALTER TABLE guild_bank_eventlog DROP INDEX guildid_key; | ||
ALTER TABLE guild_bank_item DROP INDEX guildid_key; | ||
ALTER TABLE guild_bank_right DROP INDEX guildid_key; | ||
ALTER TABLE guild_bank_tab DROP INDEX guildid_key; | ||
ALTER TABLE guild_member DROP INDEX guildid_key; |
Oops, something went wrong.