Skip to content
Diogo Pais edited this page Jun 9, 2014 · 3 revisions

Access SINFO database:

mongo sinfo

Mark notification as unread to user:

db.notifications.update({}, {$push: {unread: "<userID>"}}, {multi: true});

Set all suggested speakers as selected

db.speakers.update( { status: "Suggestion" }, { $set: { status: "Selected" } }, { multi: true } )
Clone this wiki locally