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

6 lines
205 B
JavaScript
Raw Normal View History

// mongo habitrpg ./node_modules/moment/moment.js ./migrations/current_period_end.js
db.users.update(
2019-10-08 14:57:10 +00:00
{ _id: '' },
{ $set: { 'purchased.plan.dateTerminated': moment().add({ days: 7 }).toDate() } },
);