[8107] Fixed sql queries included in [8098]. Author: GriffonHeart.

--HG--
branch : trunk
This commit is contained in:
QAston
2009-07-02 11:00:48 +02:00
parent a4d72565a7
commit ce7699af54
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ ALTER TABLE character_action
CHANGE COLUMN action action int(11) unsigned NOT NULL default '0';
UPDATE character_action
SET action = action | ( misc < 16 );
SET action = action | ( misc << 16 );
ALTER TABLE character_action
DROP COLUMN misc;

View File

@@ -4,7 +4,7 @@ ALTER TABLE playercreateinfo_action
CHANGE COLUMN action action int(11) unsigned NOT NULL default '0';
UPDATE playercreateinfo_action
SET action = action | ( misc < 16 );
SET action = action | ( misc << 16 );
ALTER TABLE playercreateinfo_action
DROP COLUMN misc;