Change the date and time of creation and updated tasks

Ilia Evgenevich May 14, 2013

How, using their administrative privileges can I change these values?

3 answers

3 votes
Kailash Vasani May 14, 2013

I changed it using SQL in JIRA4.3.4 running against Oracle 11g.

Update involves jiraissue and jiraaction tables, updated separately, as below.

update jiraissue set created=<new created date> where <issue to be updated>

update jiraaction set created=<new created date> where ID = (select action.id from jiraaction action, jiraissue issue where actiontype='comment' and action.issueid = issue.id and <issue to be updated>

AhmadDanial
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 15, 2013

Hey there, Kailash.

Thank you for sharing! Really appreciate it.

Warm regards,

Danial

ferdinand August 9, 2017

Thank you!

1 vote
AhmadDanial
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 14, 2013

Hey there, Ilia.

I believe that there is no way of altering these dates via JIRA UI itself. The thing that you might consider is to alter the values via the database from the jiraissue table via the created and updated columns.

Hope this helps.

Warm regards,

Danial

0 votes
Ilia Evgenevich May 15, 2013

Thank you very much. I use these variants

Suggest an answer

Log in or Sign up to answer