Files
aowow/setup/sql/updates/1760979719_01.sql
Sarjuuk 14c159c164 Setup/Factions
* fix switched base rep field indizes, causing Profiler to miscalculate
   character standing
 * replace hardcoded sql table prefixes
2025-10-20 19:23:52 +02:00

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');