Guest User

Untitled

a guest
Jul 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. db.getCollection('channels').find({}).forEach(item => {
  2. if (item.tbChatId == undefined) {
  3. item.tbChatId = item.name.split('textback')[1]
  4. db.channels.update({'_id':item._id}, item)
  5. }
  6. })
Add Comment
Please, Sign In to add comment