2015-01-12 18:50:46 +00:00
|
|
|
// 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() } },
|
|
|
|
|
);
|