aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-db-core
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2018-05-28 09:19:25 +0200
committerSonarTech <sonartech@sonarsource.com>2018-05-28 20:20:43 +0200
commit4063ffe9d2b7190497514ff7e476fedb57203d5e (patch)
tree37bf40a90d39112af761f1e78a8d83df5bfb4bf0 /server/sonar-db-core
parent2f215846b2e803811048223784b1c0023790da4f (diff)
downloadsonarqube-4063ffe9d2b7190497514ff7e476fedb57203d5e.tar.gz
sonarqube-4063ffe9d2b7190497514ff7e476fedb57203d5e.zip
SONAR-19597 Set USERS.UUID length to 255 instead of 40
As USERS.UUID will be fed by login during the migration, this column cannot be smaller than login's length.
Diffstat (limited to 'server/sonar-db-core')
-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 1718c97533d..83a3091a455 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
@@ -453,7 +453,7 @@ CREATE INDEX "IX_ARP_ON_ACTIVE_RULE_ID" ON "ACTIVE_RULE_PARAMETERS" ("ACTIVE_RUL
CREATE TABLE "USERS" (
"ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
- "UUID" VARCHAR(40) NOT NULL,
+ "UUID" VARCHAR(255) NOT NULL,
"LOGIN" VARCHAR(255) NOT NULL,
"NAME" VARCHAR(200),
"EMAIL" VARCHAR(100),