From 2e69ab5a682768568f24c037480cd7a18d832459 Mon Sep 17 00:00:00 2001 From: Evgeny Mandrikov Date: Wed, 22 Jun 2011 12:58:16 +0400 Subject: SONAR-2453 Update the way "false-positive" reviews are managed * The column REVIEWS.FALSE-POSITIVE should be renamed to REVIEWS.RESOLUTION, the value of this column should be FALSE-POSITIVE for false-positive reviews and FIXED for other RESOLVED reviews. * The status of a false-positive reviews should be RESOLVED. --- .../src/main/resources/org/sonar/test/persistence/sonar-test.ddl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sonar-testing-harness') 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 b90fec13f8e..c8c81e9de40 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 @@ -496,7 +496,7 @@ CREATE TABLE REVIEWS ( PROJECT_ID INTEGER, RESOURCE_ID INTEGER, RESOURCE_LINE INTEGER, - FALSE_POSITIVE SMALLINT, + RESOLUTION VARCHAR(200), primary key (id) ); -- cgit v1.2.3