List of users showing when the accounts were created and by whom
SQL query to see all user's accounts showing date created and who created it:
select author_key, object_id, created from audit_log
where summary = 'User created'
AND object_parent_name = 'JIRA Internal Directory'
ORDER BY created;
Empty author means created by mail or during JIRA's installation.
Last modified on Mar 30, 2016
Powered by Confluence and Scroll Viewport.