mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* fix switched base rep field indizes, causing Profiler to miscalculate character standing * replace hardcoded sql table prefixes
9 lines
326 B
SQL
9 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');
|