Does anyone know where workflow information is stored in the Confluence database (or in the (linux) file system if stored there?)
For example, if I hover over the "Approvals: Edited, Reviewed, Signoff", I get a popup as to who approved|edited|reviewed, and on what date, but I can't find this info in the database.
I am also unable to find where in the database how Confluence determines whether a document is 'Draft' or 'Published'. By querying a draft and published doc in the 'content' table, I see no difference. I thought this detail might be in 'content_perm' or 'content_perm_set', but I couldn't find any linking data for both types.
Perhaps this is stored in the filesystem? Any help much appreciated.
Thanks in advance
Community moderators have prevented the ability to post new answers.
One of my collegues has just found it.
select * from WIKI.os_propertyentry where entity_key like '%com.comalatech%' and ENTITY_ID = <entity_id>;
In the text_val field, you see
<ApprovalChecks>
<ApprovalCheck>
<name>Edited</name>
<version>2</version>
<approvers>
<Approver>
<approved>true</approved>
<user>sgra0999</user>
<date>2008-10-31 11:14:55.935 NZDT</date>
<comment>Initial import from Word document without change</comment>
...
...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.