* fix switched base rep field indizes, causing Profiler to miscalculate character standing * replace hardcoded sql table prefixes
8 lines
326 B
SQL
8 lines
326 B
SQL
ALTER TABLE `aowow_factions`
|
|
DROP COLUMN `baseRepValue3`,
|
|
DROP COLUMN `baseRepValue4`,
|
|
ADD COLUMN `baseRepValue3` mediumint(9) NOT NULL AFTER `baseRepValue2`,
|
|
ADD COLUMN `baseRepValue4` mediumint(9) NOT NULL AFTER `baseRepValue3`
|
|
;
|
|
|
|
UPDATE `aowow_dbversion` SET `sql` = CONCAT(IFNULL(`sql`, ''), ' factions');
|