mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 10:56:38 +01:00
* Fix blob conversion SQL to allow for proper value for watchedFaction
--HG-- branch : trunk
This commit is contained in:
@@ -8,7 +8,7 @@ ALTER TABLE characters
|
||||
ADD COLUMN `yesterdayKills` smallint(5) UNSIGNED NOT NULL default '0' AFTER todayKills,
|
||||
ADD COLUMN `chosenTitle` int(10) UNSIGNED NOT NULL default '0' AFTER yesterdayKills,
|
||||
ADD COLUMN `knownCurrencies` bigint(20) UNSIGNED NOT NULL default '0' AFTER chosenTitle,
|
||||
ADD COLUMN `watchedFaction` int(10) NOT NULL default '0' AFTER knownCurrencies,
|
||||
ADD COLUMN `watchedFaction` bigint(10) NOT NULL default '0' AFTER knownCurrencies,
|
||||
ADD COLUMN `drunk` smallint(5) UNSIGNED NOT NULL default '0' AFTER watchedFaction,
|
||||
ADD COLUMN `health` int(10) UNSIGNED NOT NULL default '0' AFTER drunk,
|
||||
ADD COLUMN `power1` int(10) UNSIGNED NOT NULL default '0' AFTER health,
|
||||
@@ -60,4 +60,4 @@ UPDATE characters SET
|
||||
SUBSTRING(data, length(SUBSTRING_INDEX(data, ' ', 30))+2, length(SUBSTRING_INDEX(data, ' ', 30+1))- length(SUBSTRING_INDEX(data, ' ', 30)) - 1);
|
||||
|
||||
ALTER TABLE characters
|
||||
DROP COLUMN arena_pending_points;
|
||||
DROP COLUMN arena_pending_points;
|
||||
|
||||
Reference in New Issue
Block a user