Last active
April 17, 2022 18:53
-
-
Save countnazgul/85fbd6930d4ed6900a88 to your computer and use it in GitHub Desktop.
[Update all rows in MongoDB] #mongo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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