aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-db-core/src
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-05-31 16:33:46 +0200
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-06-01 15:20:08 +0200
commit34a6e5a0ac025f92903da3bf321dcb14a1b160ec (patch)
treeb5b1249c310d33a0962d4ec37516b2347a88b78b /server/sonar-db-core/src
parent1fddb5b6e13e5f0019aad3049ef18b54c069bfec (diff)
downloadsonarqube-34a6e5a0ac025f92903da3bf321dcb14a1b160ec.tar.gz
sonarqube-34a6e5a0ac025f92903da3bf321dcb14a1b160ec.zip
SONAR-9328 make MANUAL_MEASURE.COMPONENT_UUID not nullable
Diffstat (limited to 'server/sonar-db-core/src')
-rw-r--r--server/sonar-db-core/src/main/resources/org/sonar/db/version/schema-h2.ddl2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-db-core/src/main/resources/org/sonar/db/version/schema-h2.ddl b/server/sonar-db-core/src/main/resources/org/sonar/db/version/schema-h2.ddl
index 2e487af0391..47fb0608e38 100644
--- a/server/sonar-db-core/src/main/resources/org/sonar/db/version/schema-h2.ddl
+++ b/server/sonar-db-core/src/main/resources/org/sonar/db/version/schema-h2.ddl
@@ -323,7 +323,7 @@ CREATE INDEX "PROJECTS_QUALIFIER" ON "PROJECTS" ("QUALIFIER");
CREATE TABLE "MANUAL_MEASURES" (
"ID" BIGINT NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
"METRIC_ID" INTEGER NOT NULL,
- "COMPONENT_UUID" VARCHAR(50),
+ "COMPONENT_UUID" VARCHAR(50) NOT NULL,
"VALUE" DOUBLE,
"TEXT_VALUE" VARCHAR(4000),
"USER_LOGIN" VARCHAR(255),