Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In newest version of TSP we had to remove one constraint from database. Your stack trace shows that for some reason this constraint was not removed from your database.


To resolve this issue you should run SQL query manually:

Paste code macro
ALTER TABLE [jiradbschema].[AO_A406ED_SCHEDULED_ISSUE] DROP CONSTRAINT [U_AO_A406ED_SCHEDUL1453239299]

This will remove deprecated constraint - this should do the trick. Please notice that the DB schema could be other - the "jiradbschema" is default schema. Before firing queries, please make sure that the schema is like in your base.


Info

Make this operations while plugin is disabled and make sure to re-enable it when it is done.

...