Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
199 views
in Q2A Core by

1 Answer

0 votes
by

qa_messages table have some columns like type, fromuserid, touserid, content, format, created

You can test with a MySql query using PHPMyadmin like

DELETE FROM qa_messages WHERE fromuserid = 1234;

Note: I never did it before because I don't allow messages in my site.

...