Skip to content

Instantly share code, notes, and snippets.

@countnazgul
Last active April 17, 2022 18:53
Show Gist options
  • Save countnazgul/85fbd6930d4ed6900a88 to your computer and use it in GitHub Desktop.
Save countnazgul/85fbd6930d4ed6900a88 to your computer and use it in GitHub Desktop.
[Update all rows in MongoDB] #mongo
Model.update({ }, { $set: { status: 'active' }}, { multi: true }, function(err, numAffected) {
console.log(numAffected);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment