]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7123 Improve size of PROJECTS.LONG_NAME columns
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 3 Feb 2016 14:08:54 +0000 (15:08 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 4 Feb 2016 07:24:59 +0000 (08:24 +0100)
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1016_increase_projects_long_name_size.rb [new file with mode: 0644]
sonar-db/src/main/java/org/sonar/db/version/DatabaseVersion.java
sonar-db/src/main/resources/org/sonar/db/version/rows-h2.sql
sonar-db/src/main/resources/org/sonar/db/version/schema-h2.ddl

diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1016_increase_projects_long_name_size.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1016_increase_projects_long_name_size.rb
new file mode 100644 (file)
index 0000000..0ac8120
--- /dev/null
@@ -0,0 +1,31 @@
+#
+# SonarQube, open source software quality management tool.
+# Copyright (C) 2008-2014 SonarSource
+# mailto:contact AT sonarsource DOT com
+#
+# SonarQube is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 3 of the License, or (at your option) any later version.
+#
+# SonarQube is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+#
+
+#
+# SonarQube 5.4
+# SONAR-7123
+#
+class IncreaseProjectsLongNameSize < ActiveRecord::Migration
+
+  def self.up
+    change_column('projects', 'long_name', :string, :limit => 2000, :null => true)
+  end
+
+end
index 96f236dcc491485a414c6642a70a700e909d2440..dcd66d08151744475c86d0c5b3f09aacf1cac9a5 100644 (file)
@@ -29,7 +29,7 @@ import org.sonar.db.MyBatis;
 
 public class DatabaseVersion {
 
-  public static final int LAST_VERSION = 1015;
+  public static final int LAST_VERSION = 1016;
 
   /**
    * The minimum supported version which can be upgraded. Lower
index 27cc3e73c397d461830dcc8b38829952e871d475..83fd226a751e169bdbcf2bcb3e52290acda85085 100644 (file)
@@ -376,6 +376,7 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1012');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1013');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1014');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1015');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1016');
 
 INSERT INTO USERS(ID, LOGIN, NAME, EMAIL, EXTERNAL_IDENTITY, EXTERNAL_IDENTITY_PROVIDER, CRYPTED_PASSWORD, SALT, CREATED_AT, UPDATED_AT, REMEMBER_TOKEN, REMEMBER_TOKEN_EXPIRES_AT) VALUES (1, 'admin', 'Administrator', '', 'admin', 'sonarqube', 'a373a0e667abb2604c1fd571eb4ad47fe8cc0878', '48bc4b0d93179b5103fd3885ea9119498e9d161b', '1418215735482', '1418215735482', null, null);
 ALTER TABLE USERS ALTER COLUMN ID RESTART WITH 2;
index 781fa94ed3faf13c63e94125c7a74a3354e564e0..df7f25dd860a4939709bbbb344a7a61d020f8148 100644 (file)
@@ -254,7 +254,7 @@ CREATE TABLE "PROJECTS" (
   "PATH" VARCHAR(2000),
   "LANGUAGE" VARCHAR(20),
   "COPY_RESOURCE_ID" INTEGER,
-  "LONG_NAME" VARCHAR(256),
+  "LONG_NAME" VARCHAR(2000),
   "PERSON_ID" INTEGER,
   "CREATED_AT" TIMESTAMP,
   "AUTHORIZATION_UPDATED_AT" BIGINT