JIRA: How to change customfield type from Date Time Picker to Date Picker

Adolfo Casari
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 3, 2016

I need to change a customfield type from Date Time Picker to Date Picker. Is there any SQL to achieve this change?

Thanks in advance,

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 3, 2016

Stop JIRA and back it up (as any change to a database can render it unusable, I always urge caution)

Go into the database and find the customfield table.  In there, you'll find all the custom fields, so find the one you want and look for its type entry - this will have a class name in it, that includes "datetime".  Find a date-only field and check what the class for that is (it will be similar and obvious)

Update the classname for the target field to be the same as the plain date picker.

Now, the thing I don't know is the effect on the data.  JIRA stores both types of field as a date and time stamp.  For date only fields, the time part is always 00:00:00.000.  I do not know if you need to update customfieldvalue to strip out all the times currently stored on each existing field.

When you've finished with the SQL, restart JIRA and immediately run a full re-index, locking the system when you do it.

Harp August 16, 2019

Is there a way to change a Date time field to time only field or just have a new Time only picker field(24hr format) in JIRA service desk ?

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 16, 2019

There is no "time only" type field, so no, not unless you find or write a plugin to provide one.

Suggest an answer

Log in or Sign up to answer