How to find project creation date
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
The steps outlined on this article are provided AS-IS. This means we've had reports of them working for some customers — under certain circumstances — yet are not officially supported, nor can we guarantee they'll work for your specific scenario.
You may follow through and validate them on your own non-prod environments prior to production or fall back to supported alternatives if they don't work out.
We also invite you to reach out to our Community for matters that fall beyond Atlassian's scope of support!
Summary
Currently, Jira does not store the project creation date outside of the audit logs which are cleaned periodically. With that, the creation date is only stored in the Jira Database when advanced auditing is set (if available), and for many cases the information may not be retrieved from there.
Solution
First, check if the information is stored in the database, you can use any of the below DB queries:
SELECT
"ENTITY_TIMESTAMP" as timestamp,
"PRIMARY_RESOURCE_ID" as project_id,
"SECONDARY_RESOURCE_ID" as username,
"RESOURCES" as details
FROM public."AO_C77861_AUDIT_ENTITY"
WHERE "ACTION_T_KEY" = 'jira.auditing.project.created'
ORDER BY "ID" ASC LIMIT 100;
OR
SELECT *
FROM audit_log
WHERE SUMMARY = 'Project created';
Note, the timestamp in the database is stored in Unix time format, you can use any online EPOCH online converter to convert the time stamp to human readable form
If not present, the closest date we can get as a workaround for this is to retrieve the date of the first issue created on the projects.
This workaround is only applicable if the project is not empty (only if it contains issues).
Run the query below in Jira's database to retrieve all project keys and their first issue-created date.
select P.pkey, min(I.created)
from jiraissue I
join project P on P.id = I.project
group by P.pkey;
You can add the number of issues on each project by adding count(I.ID)
to your select statement:
select P.pkey, min(I.created), count(I.ID)
from jiraissue I
join project P on P.id = I.project
group by P.pkey;