summaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-06-13 10:16:22 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-06-13 10:16:22 +0200
commit203278a96f8cc8c9d26ad9e0ee28fae7535705ab (patch)
tree4488de3b13b31da4886fe6ca2341d8823df947ef /sonar-core
parentf9ffc53a6461ebabdc26599ae0457aa600135d9c (diff)
downloadsonarqube-203278a96f8cc8c9d26ad9e0ee28fae7535705ab.tar.gz
sonarqube-203278a96f8cc8c9d26ad9e0ee28fae7535705ab.zip
SONAR-5369 Fix RULES.IS_TEMPLATE definition iin H2
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl2
1 files changed, 1 insertions, 1 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 f3ae5b2a6a6..a609cd530b5 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
@@ -134,7 +134,7 @@ CREATE TABLE "RULES" (
"PLUGIN_NAME" VARCHAR(255) NOT NULL,
"DESCRIPTION" VARCHAR(16777215),
"PRIORITY" INTEGER,
- "IS_TEMPLATE" BOOLEAN,
+ "IS_TEMPLATE" BOOLEAN DEFAULT FALSE,
"TEMPLATE_ID" INTEGER,
"PLUGIN_CONFIG_KEY" VARCHAR(500),
"NAME" VARCHAR(200),