habitica-self-host/migrations/command-line/contribs_plan.js

23 lines
389 B
JavaScript
Raw Permalink Normal View History

// Give contrib.level 7+ free subscription for life
db.users.update(
{
2019-10-08 14:57:10 +00:00
'contributor.level': { $gte: 7 },
'purchased.plan.customerId': null,
},
{
$set: {
'purchased.plan': {
planId: 'basic',
customerId: 'habitrpg',
dateCreated: new Date(),
dateUpdated: new Date(),
gemsBought: 0,
},
},
},
2019-10-08 14:57:10 +00:00
{ multi: true },
2019-10-08 14:57:10 +00:00
);