common-workflow-service
common-workflow-service copied to clipboard
Need to cleanup old/expired cws_token database table entries
Should probably be a periodic job, that simply deletes old entries. Either that, or build it into the Java code that manages the table operations itself.
DELETE FROM cws.cws_token WHERE expiration_time < NOW();
time estimate: 1 day