You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am looking for the database table which stores data for target start and target end custom field created using portfolio for Jira plugin
Hi Aman,
I had just the same question this morning and I think I've got the answer.
Please look at this article:
How to view Advanced Roadmaps Target Start and Target End values in the database. | Jira | Atlassian Documentation
You have to convert the unix timestamp to a readable format.
There might be a more elegant way to do this, but for me it worked like this (for the target start and issue id 38760):
SELECT substr(from_unixtime((cast(x AS UNSIGNED)/1000)),1,10) AS targetstart
FROM (
SELECT substr(json_value,(LOCATE('"baseline_start"',json_value,1)+LENGTH("baseline_start")+4),13) AS x
from jiradb.entity_property ep
WHERE entity_name = 'IssueProperty'
AND property_key = 'jpo-issue-properties'
AND entity_id = 38760
and json_value like '%"baseline_start"%'
) s
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.