Index: trunk/extensions/CodeReview/codereview.sql |
— | — | @@ -46,6 +46,15 @@ |
47 | 47 | cr_message blob, |
48 | 48 | |
49 | 49 | -- Status key for how this thang is... |
| 50 | + -- 'new': Hasn't yet been reviewed |
| 51 | + -- 'fixme': This revision has some problem which needs to be resolved |
| 52 | + -- 'reverted': Was completely reverted by a later revision |
| 53 | + -- 'resolved': Issues with this rev have been since resolved |
| 54 | + -- 'ok': Reviewed, no issues spotted |
| 55 | + -- 'verified': Reviewed and tested, no issues spotted |
| 56 | + -- 'deferred': Not reviewed at this time (usually non-Wikimedia extension) |
| 57 | + -- 'old': Predates the extension/doesn't require review |
| 58 | + -- See CodeRevision::getPossibleStates() (in backend\CodeRevision.php) for most up to date list |
50 | 59 | cr_status varchar(25) not null default 'new', |
51 | 60 | |
52 | 61 | -- Base path of this revision : |