diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-07-08 23:21:12 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-07-08 23:21:12 +0200 |
commit | 6a11543ab162bbe1434f478bf99af176f773a92d (patch) | |
tree | a9a56e2ecb90e3eee50a17ba176ced11164173de /sonar-core | |
parent | 22c56a89235eaa229af5d88e93bdbc26628a07ec (diff) | |
download | sonarqube-6a11543ab162bbe1434f478bf99af176f773a92d.tar.gz sonarqube-6a11543ab162bbe1434f478bf99af176f773a92d.zip |
Fix H2 type of RULE_NOTES.DATA and ACTIVE_RULE_NOTES.DATA
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl | 4 |
1 files changed, 2 insertions, 2 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 b597ddde8f4..92041d0d7b9 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 @@ -486,7 +486,7 @@ CREATE TABLE "ACTIVE_RULE_NOTES" ( "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), "ACTIVE_RULE_ID" INTEGER, "USER_LOGIN" VARCHAR(40), - "DATA" BINARY(167772150), + "DATA" CLOB(2147483647), "CREATED_AT" TIMESTAMP, "UPDATED_AT" TIMESTAMP ); @@ -495,7 +495,7 @@ CREATE TABLE "RULE_NOTES" ( "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), "RULE_ID" INTEGER, "USER_LOGIN" VARCHAR(40), - "DATA" BINARY(167772150), + "DATA" CLOB(2147483647), "CREATED_AT" TIMESTAMP, "UPDATED_AT" TIMESTAMP ); |