Skip Navigation
7 comments
  • Is there a way to edit the database so move field is cleared? I moved some of my forums initial posts a long time ago and dont need the moved arrow or the 'moved from xyz' against them now.

  • So the number in the url is the topic id, for example for this topic its /topic/13608, to remove the moved arrow for this topic you would run the below in mongodb.

     undefined
        
    db.objects.updateOne({_key: "topic:13608"}, {$unset: {"fromCid": ""}});
    
      
7 comments