Paul B XenForo moderator Staff member Jun 6, 2018 #2 If you want to irrevocably delete the conversation content, you can truncate/empty the related tables. Make sure you take a backup first, just in case of any issues. Upvote 0 Downvote
If you want to irrevocably delete the conversation content, you can truncate/empty the related tables. Make sure you take a backup first, just in case of any issues.
Ozzy47 Well-known member Jun 6, 2018 #3 This may still work, https://xenforo.com/community/threads/imported-conversations.12467/#post-164602 Upvote 0 Downvote
CoreIssue Member Jun 6, 2018 #4 TRUNCATE TABLE xf_conversation_master; TRUNCATE TABLE xf_conversation_message; TRUNCATE TABLE xf_conversation_recipient; TRUNCATE TABLE xf_conversation_user; UPDATE xf_user SET conversations_unread = 0; SQL Works Upvote 0 Downvote
TRUNCATE TABLE xf_conversation_master; TRUNCATE TABLE xf_conversation_message; TRUNCATE TABLE xf_conversation_recipient; TRUNCATE TABLE xf_conversation_user; UPDATE xf_user SET conversations_unread = 0; SQL Works
AndyB Well-known member Jun 6, 2018 #5 You might like this add-on: https://xenforo.com/community/resources/delete-conversations.6196/ Upvote 0 Downvote
Ozzy47 Well-known member Jun 7, 2018 #6 AndyB said: You might like this add-on: https://xenforo.com/community/resources/delete-conversations.6196/ Click to expand... Why? It was done with simple queries. Upvote 0 Downvote
AndyB said: You might like this add-on: https://xenforo.com/community/resources/delete-conversations.6196/ Click to expand... Why? It was done with simple queries.
Ozzy47 Well-known member Jun 7, 2018 #7 CoreIssue said: TRUNCATE TABLE xf_conversation_master; TRUNCATE TABLE xf_conversation_message; TRUNCATE TABLE xf_conversation_recipient; TRUNCATE TABLE xf_conversation_user; UPDATE xf_user SET conversations_unread = 0; SQL Works Click to expand... Glad that worked for you. Upvote 0 Downvote
CoreIssue said: TRUNCATE TABLE xf_conversation_master; TRUNCATE TABLE xf_conversation_message; TRUNCATE TABLE xf_conversation_recipient; TRUNCATE TABLE xf_conversation_user; UPDATE xf_user SET conversations_unread = 0; SQL Works Click to expand... Glad that worked for you.