* expanded tooltips * moved cap from hardcoded to DB * can now set description (manually) Itemset * expanded tooltips Lang * number formating is now locale-aware
5 lines
223 B
SQL
5 lines
223 B
SQL
ALTER TABLE `aowow_currencies`
|
|
ADD COLUMN `cap` MEDIUMINT UNSIGNED NOT NULL AFTER `itemId`;
|
|
|
|
UPDATE `aowow_currencies` SET `cap` = 10000 WHERE `id` = 103;
|
|
UPDATE `aowow_currencies` SET `cap` = 75000 WHERE `id` = 104;
|