aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-testing-harness/src
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2011-05-26 12:10:38 +0200
committerFabrice Bellingard <bellingard@gmail.com>2011-05-26 13:49:26 +0200
commitf769fb5f2e558c027c92b87c5ad989913793d224 (patch)
tree397947cb9b20057e44afe6cba4d1d20a0198ba4f /sonar-testing-harness/src
parent235d3e745d68bf549ce0c5353d76f936572f7c93 (diff)
downloadsonarqube-f769fb5f2e558c027c92b87c5ad989913793d224.tar.gz
sonarqube-f769fb5f2e558c027c92b87c5ad989913793d224.zip
SONAR-2453 Update the way "FALSE-POSITIVE" reviews are managed
1- Update the DB, migration scripts & co. 2- Update the model, controller & co. 3- Update the WS Client
Diffstat (limited to 'sonar-testing-harness/src')
-rw-r--r--sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl b/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl
index d7e6a848481..2391427880f 100644
--- a/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl
+++ b/sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl
@@ -489,13 +489,13 @@ CREATE TABLE REVIEWS (
USER_ID INTEGER,
ASSIGNEE_ID INTEGER,
TITLE VARCHAR(500),
- REVIEW_TYPE VARCHAR(10),
STATUS VARCHAR(10),
SEVERITY VARCHAR(10),
RULE_FAILURE_PERMANENT_ID INTEGER,
PROJECT_ID INTEGER,
RESOURCE_ID INTEGER,
RESOURCE_LINE INTEGER,
+ FALSE_POSITIVE SMALLINT,
primary key (id)
);