Documentation for JIRA 5.0. Documentation for other versions of JIRA is available too.
There is currently no way to change Statuses order in JIRA, the only workaround is to manipulate JIRA database, please follow JRA-5198 and vote on this feature.
Direct Database Manipulation is outside the scope of Atlassian support - this document is for informational purposes only
警告
Please Backup Database before implement the below workaround
SELECT pname,SEQUENCE FROM issuestatus order by SEQUENCE;
pname |
SEQUENCE |
---|---|
オープン |
1 |
進行中 |
2 |
再オープン |
3 |
解決済み |
4 |
Closed |
5 |
update issuestatus set SEQUENCE =10 where SEQUENCE=1;
pname |
SEQUENCE |
---|---|
オープン |
10 |
進行中 |
20 |
再オープン |
30 |
解決済み |
40 |
Closed |
50 |
update issuestatus set SEQUENCE =45 where pname="Reopened";