diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-06-22 12:58:16 +0400 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-06-23 14:33:05 +0400 |
commit | 2e69ab5a682768568f24c037480cd7a18d832459 (patch) | |
tree | 55e998575e9ff417d9b7cbb60a20c6821e794fe6 /sonar-testing-harness | |
parent | 9be8dbadcb5f991b6a9a507136efe61e60e9bc4d (diff) | |
download | sonarqube-2e69ab5a682768568f24c037480cd7a18d832459.tar.gz sonarqube-2e69ab5a682768568f24c037480cd7a18d832459.zip |
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.
Diffstat (limited to 'sonar-testing-harness')
-rw-r--r-- | sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl | 2 |
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 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) ); |