aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-testing-harness
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2011-07-11 16:05:48 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2011-07-11 16:05:48 +0200
commit9be64edfd1ff348bdf9bf1ddadb189e906770e4e (patch)
treea4488fc337f94955b08f0ea860c738eeea6d6d01 /sonar-testing-harness
parenteaa9a0cfc3f098f2a6b399bdbd0fcf43366024ac (diff)
downloadsonarqube-9be64edfd1ff348bdf9bf1ddadb189e906770e4e.tar.gz
sonarqube-9be64edfd1ff348bdf9bf1ddadb189e906770e4e.zip
SONAR-2583 Remove the unused table PARAMETERS
Diffstat (limited to 'sonar-testing-harness')
-rw-r--r--sonar-testing-harness/src/main/resources/org/sonar/test/persistence/sonar-test.ddl8
1 files changed, 0 insertions, 8 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 c8c81e9de40..a2c2ad8d445 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
@@ -245,14 +245,6 @@ create table METRICS (
);
CREATE UNIQUE INDEX METRICS_UNIQUE_NAME ON METRICS (NAME);
-create table PARAMETERS (
- ID INTEGER not null,
- PARAM_KEY VARCHAR(100) not null,
- VALUE DECIMAL(30, 20) not null,
- VALUE2 DECIMAL(30, 20),
- primary key (id)
-);
-
create table PROJECTS (
ID INTEGER not null,
NAME VARCHAR(256),