mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-31 23:11:15 +00:00
5 lines
115 B
JavaScript
5 lines
115 B
JavaScript
|
|
db.users.update(
|
||
|
|
{ lastCron: { $exists: false} },
|
||
|
|
{ $set: { lastCron: +new Date } },
|
||
|
|
{ multi: true }
|
||
|
|
);
|