How do I delete all history of all completed workflows? I assume it's some tables in the DB, but I don't want to go around truncating tables that I don't know what they do!
I have written code that displays workflow history. And on my DEV box, I just want to clean it up from time to time when I re factor my code.
I truncated all tables that begin with: act_hi_* and that seems to do the trick. But according to the documentation, a row is written to that table as soon as a task is started, then updated from there, so make sure all your workflows are complete before you do this.