mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
8 lines
236 B
JavaScript
8 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}
|
|
);
|