mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* noticed having comments inside querys in these files breaks them * also there appear to be files with \r line endings left
6 lines
221 B
SQL
6 lines
221 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;
|