You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
Is there a quick way to check where the plugin Issue Alternative Assignee is being used? By DB query or something?
Hi Divya,
Maybe the below SQL script can help you:
--LIST THE WORKFLOWS AND THEIR WF SCHEME
SELECT
workflowscheme.
name
,
workflowschemeentity.scheme,
issuetype.pname,
workflowschemeentity.issuetype
FROM
jira.issuetype,
jira.workflowschemeentity,
jira.workflowscheme
WHERE
issuetype.id = workflowschemeentity.issuetype
and
workflowscheme.id = workflowschemeentity.scheme
and
workflowschemeentity.workflow
in
(
SELECT
jiraworkflows.workflowname
FROM
jira.jiraworkflows
WHERE
jiraworkflows.descriptor
like
'%company.plugin%'
);
--LIST THE WORKFLOWS NOT MATTER IF THEY'RE OR NOT ASSIGNED TO A WF SCHEME
SELECT
jira.jiraworkflows.workflowname
FROM
jira.jiraworkflows
WHERE
jira.jiraworkflows.descriptor
like
'%company.plugin%';
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.