ICTime Teams / Price Lists

Nadim Iraki December 7, 2016

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. 

1 answer

0 votes
Smadoa December 8, 2016

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 |

2320034NULL

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.

 

Suggest an answer

Log in or Sign up to answer