Hey,
how can I unassign DELETED JIRA projects from teams and price lists at ICTime adiminstration?
At the global teams page at the ICTime administration it only shows me thumbnails of deleted project and edit teams, which gives me errors.
Support is appreciated. Thank you.
If you have not unassigned teams from projects prior deleting the project, you need to delete the assignment on database level.
Run the following select on your JIRA database:
select gtp.id gtp_id, gtp.global_team_id, p.id from AO_9B23C2_GLOBAL_TEAM_PROJECTS gtp LEFT JOIN project p on (p.id = gtp.PROJECT_ID) where p.id is null;
+--------+----------------+------+
| gtp_id | global_team_id | id |
+--------+----------------+------+
| 22 | 20028 | NULL |
23 | 20034 | NULL |
If you get any results, delete the assignment manually:
delete from AO_9B23C2_GLOBAL_TEAM_PROJECTS where id in (XX,yy,..);
Replace the xx, yy,.. with the gtp_id entries from the above query.
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.