mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-27 13:40:00 +00:00
9 lines
242 B
JavaScript
9 lines
242 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}
|
||
|
|
);
|