I wish I hadYou can run a query to delete them all, if you're comfortable doing so.
I actually ran the query on my old (phpBB) forum before importing.
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;
I just did a quick test and these queries work for deleting all personal conversations. You can paste these queries into phpmyadmin:
Code: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;
Backup first just in case. My test was successful but I might have missed something.
I just did a quick test and these queries work for deleting all personal conversations. You can paste these queries into phpmyadmin:
Code: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;
Backup first just in case. My test was successful but I might have missed something.
Is this still good for xf 1.5 ?
We use essential cookies to make this site work, and optional cookies to enhance your experience.