How to view Advanced Roadmaps Target Start and Target End values in the database.
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
Server* 製品のサポートは 2024 年 2 月 15 日をもって終了します。Server 製品を利用している場合は、Atlassian Server のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
要約
This page shows how to obtain Advanced Roadmaps Target Start and Target End values from Jira's database.
環境
Jira Data Center and Server.
ソリューション
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"} |
ここで:
- 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.