How to view Advanced Roadmaps Target Start and Target End values in the database.
Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
This page shows how to obtain Advanced Roadmaps Target Start and Target End values from Jira's database.
Environment
Jira Data Center and Server.
Solution
Target Start Values and Target End values are stored in the entity_property table.
Below is a sample issue set with Target Start and Target End dates:
These values are stored in the database in the following manner:
id | entity_name | entity_id | property_key | created | updated | json_value |
10201 | IssueProperty | 10100 | jpo-issue-properties | 2022-12-15 17:30:37.385 | 2022-12-15 17:30:37.686 | {"baseline_start":"1671062400000","baseline_end":"1671148800000"} |
Where:
- Entity_ID = jiraissue table ID
- Target Start = baseline_start
- Target End = baseline_end
Just to note as well, these values are stored in the Unix timestamp format and need to be converted to human readable values.