How are the tables os_currentstep and os_currentstep_prev related? How are the tables os_historystep and os_historystep_prev related?
Thanks
Krishnan
os_currentstep stores status of issue as of now. Its entry_id is same as workflow_id.
So in case if you update issue status in jiraissue table then you should update in os_currentstep table also.
UPDATE os_currentstep SET step_id = 6 where entry_id = (select
workflow_id from jiraissue where pkey = <put key>');
os_currentstep_prev stores previous id of issue id.
HTH.
Thanks
Amit
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.