mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-22 23:10:52 +01:00
5 lines
184 B
SQL
5 lines
184 B
SQL
ALTER TABLE `achievements`
|
|
CHANGE COLUMN `pixels` `reward_amount` int(11) NOT NULL DEFAULT 100 AFTER `level`,
|
|
ADD COLUMN `reward_currency` int(11) NOT NULL DEFAULT 0 AFTER `level`;
|
|
|