Bulk rename of JIRA Custom Fields

Peter Macdonald May 20, 2013

We need to rename up to 100 JIRA Custom Fields in a simple and fast manner. Is there a groovy script or similar process that will allow us to prepare the rename and then run it in a single or small set of instructions.

3 answers

0 votes
Peter Macdonald May 26, 2013

In Oracle: UPDATE CUSTOMFIELD SET CFNAME = "New Field Name" WHERE ID=12345

OR

UPDATE CUSTOMFIELD SET CFNAME = "New Field Name" WHERE CFNAME = "Old Field Name"

Set up an SQL command file to execute as many of these as required.

Remember your filters:

SELECT ID,FILTERNAME from SEARCHREQUEST where UPPER(REQCONTENT) LIKE '%OLD FIELD NAME%'

This will list any filters that need updating once you have run the Custom Field Rename.

You may also want to check that none of your WORKFLOWS use the field name:

SELECT * FROM JIRAWORKFLOWS WHERE UPPER(DESCRIPTOR) like '%OLD FIELD NAME%'

There may also be some 3rd Party Plugins that use the CFNAME instead of the field ID. Set up searches of the PROPERTYENTRY, PROPERTYSTRING and PROPERTYText tables.

In all the above cases and because this "Answer" is about a Bulk Rename of Custom Fields, you can use the UNION command to string together your Search strings for each table and get your complete list of affected items.

0 votes
Peter Macdonald May 21, 2013

Excellent solution. I will just update the CFNAME in the CUSTOMFIELD table.

0 votes
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 20, 2013

Not sure if the add-on supports that but you can do it at the database level.

Suggest an answer

Log in or Sign up to answer