lila/bin/mongodb/rapid-filter-update.js
2017-11-29 23:35:32 -05:00

5 lines
183 B
JavaScript

var speedId = 5;
[db.config, db.config_anon].forEach(coll => {
coll.update({ 'filter.s.2': { $exists: true } }, { $push: { 'filter.s': NumberInt(speedId) } }, { multi: true });
});