aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2012-11-26 17:27:58 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2012-11-26 17:27:58 +0100
commit1ac7e40d2210a59f3650d3c1d5a394afdbe09e45 (patch)
tree59e2e941670f7061b5728974b53f7fcd2838fdc8 /sonar-core
parent83f1a6be23cc239d4d3790e57ff1fa24306a0a82 (diff)
downloadsonarqube-1ac7e40d2210a59f3650d3c1d5a394afdbe09e45.tar.gz
sonarqube-1ac7e40d2210a59f3650d3c1d5a394afdbe09e45.zip
SONAR-3825 manage system filters
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl1
1 files changed, 1 insertions, 0 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl b/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl
index 576451a88a2..ea4589cf455 100644
--- a/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl
+++ b/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl
@@ -517,6 +517,7 @@ CREATE TABLE "SEMAPHORES" (
CREATE TABLE "MEASURE_FILTERS" (
"ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
"NAME" VARCHAR(100) NOT NULL,
+ "SYSTEM" BOOLEAN,
"SHARED" BOOLEAN NOT NULL DEFAULT FALSE,
"USER_ID" INTEGER,
"DESCRIPTION" VARCHAR(4000),