Index: trunk/extensions/CodeReview/codereview.sql |
— | — | @@ -54,7 +54,8 @@ |
55 | 55 | cr_status enum('new', 'fixme', 'resolved', 'ok') not null default 'new', |
56 | 56 | |
57 | 57 | primary key (cr_repo_id, cr_id), |
58 | | - key (cr_repo_id, cr_timestamp) |
| 58 | + key (cr_repo_id, cr_timestamp), |
| 59 | + key cr_repo_author (cr_repo_id, cr_author) |
59 | 60 | ) /*$wgDBTableOptions*/; |
60 | 61 | |
61 | 62 | -- |