Is there a way to find out jira version directly from the database?
Rahul
Yes:
select * from propertystring where id = (select id from propertyentry where property_key = 'jira.version');
Actually, no. It's not stored as a direct number!
You might be able to work it out from the data in the "upgradehistory" table (if a system has ever been upgraded) but the database doesn't actually hold the installation version anywhere.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Rahul,
Try this SQL query and let me know if it helps
select TARGETVERSION from upgradeversionhistory ORDER BY TIMEPERFORMED DESC
Regards
Chander Inguva
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.