mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-28 11:42:29 +01:00
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
db.users.update(
|
|
{'purchased.plan.customerId':{$ne:null}, 'purchased.plan.dateUpdated':null},
|
|
{
|
|
$set: {'purchased.plan.dateUpdated': new Date('12/01/2014')},
|
|
$unset: {'purchased.plan.datedUpdated':''}
|
|
},
|
|
{multi:true}
|
|
);
|