mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-27 17:32:26 +00:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
|
|
// mongo habitrpg migrations/20130612_survey_rewards_individual.js
|
||
|
|
|
||
|
|
let query = {_id: ''};
|
||
|
|
|
||
|
|
db.users.update(query,
|
||
|
|
{
|
||
|
|
$set: { 'achievements.helpedHabit': true },
|
||
|
|
$inc: { balance: 2.5 },
|
||
|
|
});
|