Skip to content

Instantly share code, notes, and snippets.

@jkullick
Last active January 24, 2017 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkullick/1a9fcca411bb5cbb11f1b387339cfcb6 to your computer and use it in GitHub Desktop.
Save jkullick/1a9fcca411bb5cbb11f1b387339cfcb6 to your computer and use it in GitHub Desktop.
Fix JIRA Upgrade Error ("JIRA Agile is currently unavailable")
  1. Stop JIRA

  2. Execute Database Queries:

UPDATE propertynumber SET propertyvalue = 47 
WHERE id = (SELECT id FROM propertyentry WHERE property_key = 'GreenHopper.Upgrade.Latest.Upgraded.Version');
UPDATE propertystring SET propertyvalue = '47' 
WHERE id = (SELECT id FROM propertyentry WHERE property_key = 'com.pyxis.greenhopper.jira:build');
  1. Start JIRA

Source

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment