Defect #829
closedTrackers doubled in New Issue on Issues page
100%
Description
A picture is worth 1000 words. See attached.
Files
Related issues
Updated by Jean-Philippe Lang over 16 years ago
Did you use the Trac importer for this project ?
Updated by Jean-Philippe Lang over 16 years ago
That's a bug in the Trac importer. I'll fix it to prevent this problem in the future.
Go to projects settings, uncheck the trackers, save, re-check them and re-save. You should no longer see duplicates.
Updated by Marc Horowitz over 16 years ago
I think that was enough of a hint. The database looks like this:
redmine=# select * from projects_trackers;
project_id | tracker_id
------------+------------
1 | 1
1 | 2
1 | 1
1 | 2
(4 rows)
Deleting the duplicate rows solved the problem. Perhaps this table should have a unique constraint across both columns? I believe this would remove the need for the existing index on project_id, as well.
Updated by Jean-Philippe Lang over 16 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset r1263.