mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 07:20:50 +01:00
5 lines
184 B
MySQL
5 lines
184 B
MySQL
|
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`;
|
||
|
|