Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. db.getCollection('offers').find({}).forEach(function(item, index){
  2. print(item);
  3. // item.employerId
  4. if (!item.dateOfPost) {
  5. db.getCollection('offers').update(
  6. { _id: item._id },
  7. {
  8. $set: {
  9. dateOfPost: new Date(),
  10. }
  11. }
  12. )
  13. }
  14.  
  15. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement