Hello all,
I need to count how many tickets have been moved from one project to another per month.
Does anyone have any SQL that might do this?
I have my own JIRA instance running against MySQL.
Thanks,
John
You will have to traverse the ChangeItem table and find out the changes where field is project. It has all the other info like oldvalue, newvalue etc. The time I guess is in ChangeGroup table but you can get it by a simple JOIN.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.