Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Bug? Movement of project does not move logged hours on issues.

web-app

Current

I created a project with issues but I made 3 projects of it. So I used the "Move" feature to move the issue to another project. Since time is logged against issues, I was thinking the time would also move along. But this is not the case. I used the next SQL to correct for:

 

select from issues where projid = 26

SELECT FROM timetracking WHERE PROJID = 26

 

BEGIN TRANSACTION

UPDATE TIMETRACKING SET PROJID=26

WHERE ENTRYID IN

(

SELECT ENTRYID FROM timetracking WHERE PROJID = 9

AND ISSUEID IN (211, 218, 268, 270, 216, 271)

)

COMMIT

Desired

Move time also to other project. The projid of the timetracking is not updated accordingly.

Jelle Ossewaarde
· 1
Jelle Ossewaarde
Replies (1)
helpful
0
not helpful

Saar Cohen
· 5000
Saar Cohen