diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2018-09-25 08:40:14 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2018-10-10 09:23:01 +0200 |
commit | f5a9eedb6aded3cc5cbf514419cf23c6e2165373 (patch) | |
tree | 0a73cace4725e97a7b94d5124194ff770e1be518 /server/sonar-db-core/src | |
parent | 489c2324ff5ea92e47a9f7728152c97e7d8a24d7 (diff) | |
download | sonarqube-f5a9eedb6aded3cc5cbf514419cf23c6e2165373.tar.gz sonarqube-f5a9eedb6aded3cc5cbf514419cf23c6e2165373.zip |
SONAR-11302 Increase size of organization's key and name
As login can be automatically generated from name, size of the personal organization key might be higher than current value (32)
Diffstat (limited to 'server/sonar-db-core/src')
-rw-r--r-- | server/sonar-db-core/src/main/resources/org/sonar/db/version/schema-h2.ddl | 4 |
1 files changed, 2 insertions, 2 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 a792c2be6b1..9ad1de692b4 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 @@ -1,7 +1,7 @@ CREATE TABLE "ORGANIZATIONS" ( "UUID" VARCHAR(40) NOT NULL, - "KEE" VARCHAR(32) NOT NULL, - "NAME" VARCHAR(64) NOT NULL, + "KEE" VARCHAR(300) NOT NULL, + "NAME" VARCHAR(300) NOT NULL, "DESCRIPTION" VARCHAR(256), "URL" VARCHAR(256), "AVATAR_URL" VARCHAR(256), |