diff options
author | click <none@none> | 2010-04-16 02:14:21 +0200 |
---|---|---|
committer | click <none@none> | 2010-04-16 02:14:21 +0200 |
commit | e79d50fa2d7ad1af9c6d057583c38a282bd54f3c (patch) | |
tree | 522b4276d56dc01bd4251cdf1987950293223d55 /sql | |
parent | 81d5a23b373bd18101824e2a085f6fa56c9fd5dc (diff) |
Reapply the previous "actionbars"-fix/handling db/coreside
Fixes issue #1669
Note: This issue has been a pain in the rear, as it was actually messing up
clients that ran a vanilla client without addons. The issue only comes
in to place when players load a SINGLE actionbar, and not selecting
"activate all bars". Extensive testing and debugging done to figure out
why this actually happened - I'll fricking shoot the next one messing
with it!
--HG--
branch : trunk
Diffstat (limited to 'sql')
-rw-r--r-- | sql/characters.sql | 1 | ||||
-rw-r--r-- | sql/updates/7901_characters_characters.sql | 1 | ||||
-rw-r--r-- | sql/updates/7923_characters_characters.sql | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/sql/characters.sql b/sql/characters.sql index 16312e478b1..d07f43cf3a0 100644 --- a/sql/characters.sql +++ b/sql/characters.sql @@ -391,6 +391,7 @@ CREATE TABLE `characters` ( `equipmentCache` longtext, `ammoId` int(10) UNSIGNED NOT NULL default '0', `knownTitles` longtext, + `actionBars` tinyint(3) UNSIGNED NOT NULL default '0', PRIMARY KEY (`guid`), KEY `idx_account` (`account`), KEY `idx_online` (`online`), diff --git a/sql/updates/7901_characters_characters.sql b/sql/updates/7901_characters_characters.sql deleted file mode 100644 index 381cd0399da..00000000000 --- a/sql/updates/7901_characters_characters.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `characters` DROP `actionBars`; diff --git a/sql/updates/7923_characters_characters.sql b/sql/updates/7923_characters_characters.sql new file mode 100644 index 00000000000..a9fe4880731 --- /dev/null +++ b/sql/updates/7923_characters_characters.sql @@ -0,0 +1,2 @@ +ALTER TABLE characters + ADD COLUMN `actionBars` tinyint(3) UNSIGNED NOT NULL default '0' AFTER knownTitles; |