mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* expanded tooltips * moved cap from hardcoded to DB * can now set description (manually) Itemset * expanded tooltips Lang * number formating is now locale-aware
6 lines
223 B
SQL
6 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;
|