]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3797 Size of the name column in the groups table is too short
authorDavid Gageot <david@gageot.net>
Wed, 7 Nov 2012 16:06:57 +0000 (17:06 +0100)
committerDavid Gageot <david@gageot.net>
Wed, 7 Nov 2012 16:06:57 +0000 (17:06 +0100)
sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java
sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql
sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl
sonar-server/src/main/webapp/WEB-INF/db/migrate/353_increase_group_name_size.rb [new file with mode: 0644]

index c22f9253ff3434e49a856dcf1abd03d3af43d216..e200d553f7a97788bff09b1a610da133096967bc 100644 (file)
@@ -32,7 +32,7 @@ import java.util.List;
  */
 public class DatabaseVersion implements BatchComponent, ServerComponent {
 
-  public static final int LAST_VERSION = 352;
+  public static final int LAST_VERSION = 353;
 
   public static enum Status {
     UP_TO_DATE, REQUIRES_UPGRADE, REQUIRES_DOWNGRADE, FRESH_INSTALL
index 5c27bbed51c6b66709d9cd1f8da891a13e0e80cf..b6abb1db23aec08b4783c9987115fad03673fcef 100644 (file)
@@ -180,6 +180,7 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('335');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('350');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('351');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('352');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('353');
 
 INSERT INTO USERS(ID, LOGIN, NAME, EMAIL, CRYPTED_PASSWORD, SALT, CREATED_AT, UPDATED_AT, REMEMBER_TOKEN, REMEMBER_TOKEN_EXPIRES_AT) VALUES (1, 'admin', 'Administrator', '', 'a373a0e667abb2604c1fd571eb4ad47fe8cc0878', '48bc4b0d93179b5103fd3885ea9119498e9d161b', '2011-09-26 22:27:48.0', '2011-09-26 22:27:48.0', null, null);
 ALTER TABLE USERS ALTER COLUMN ID RESTART WITH 2;
index 55d371192197fbf904001a4d8bbd7aeff9d31efb..f4d01e85b6f7bcb929ec6f8583ca117985f0adc2 100644 (file)
@@ -106,7 +106,7 @@ CREATE TABLE "MEASURE_DATA" (
 
 CREATE TABLE "GROUPS" (
   "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
-  "NAME" VARCHAR(40),
+  "NAME" VARCHAR(255),
   "DESCRIPTION" VARCHAR(200),
   "CREATED_AT" TIMESTAMP,
   "UPDATED_AT" TIMESTAMP
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/353_increase_group_name_size.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/353_increase_group_name_size.rb
new file mode 100644 (file)
index 0000000..5aa1839
--- /dev/null
@@ -0,0 +1,29 @@
+#
+# Sonar, open source software quality management tool.
+# Copyright (C) 2008-2012 SonarSource
+# mailto:contact AT sonarsource DOT com
+#
+# Sonar 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.
+#
+# Sonar 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 Sonar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
+#
+
+#
+# Sonar 3.4
+#
+class IncreaseGroupNameSize < ActiveRecord::Migration
+
+  def self.up
+    change_column :groups, :name, :string, :limit => 255, :null => true
+  end
+end