]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2712 SONAR-3938 increase column size of snapshots.version and snapshots.path
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 19 Nov 2012 14:36:47 +0000 (15:36 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 19 Nov 2012 14:36:47 +0000 (15:36 +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-plugin-api/src/main/java/org/sonar/api/database/model/Snapshot.java
sonar-server/src/main/webapp/WEB-INF/db/migrate/353_increase_group_name_size.rb
sonar-server/src/main/webapp/WEB-INF/db/migrate/354_increase_snapshots_path_size.rb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/db/migrate/355_increase_snapshots_version_size.rb [new file with mode: 0644]

index e200d553f7a97788bff09b1a610da133096967bc..ead0244d6d9df7eee7b2395651b2008104f16774 100644 (file)
@@ -32,7 +32,7 @@ import java.util.List;
  */
 public class DatabaseVersion implements BatchComponent, ServerComponent {
 
-  public static final int LAST_VERSION = 353;
+  public static final int LAST_VERSION = 355;
 
   public static enum Status {
     UP_TO_DATE, REQUIRES_UPGRADE, REQUIRES_DOWNGRADE, FRESH_INSTALL
index b6abb1db23aec08b4783c9987115fad03673fcef..fc61fc82ba18b07a1ec5c134d11dfa9c1c704f5e 100644 (file)
@@ -181,6 +181,8 @@ 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 SCHEMA_MIGRATIONS(VERSION) VALUES ('354');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('355');
 
 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 f4d01e85b6f7bcb929ec6f8583ca117985f0adc2..58dfdbb09dac8d3f2cbc5845d8542bbcbac69287 100644 (file)
@@ -132,8 +132,8 @@ CREATE TABLE "SNAPSHOTS" (
   "SCOPE" VARCHAR(3),
   "QUALIFIER" VARCHAR(10),
   "ROOT_SNAPSHOT_ID" INTEGER,
-  "VERSION" VARCHAR(60),
-  "PATH" VARCHAR(96),
+  "VERSION" VARCHAR(500),
+  "PATH" VARCHAR(500),
   "DEPTH" INTEGER,
   "ROOT_PROJECT_ID" INTEGER,
   "PERIOD1_MODE" VARCHAR(100),
index f0a5cf93df6cd00f2197583590a8ce5e2bad1cac..6af64feb22fd66380ba41d7e80a29c603d0b2ec5 100644 (file)
@@ -58,7 +58,7 @@ public class Snapshot extends BaseIdentifiable {
   @Column(name = "created_at", updatable = true, nullable = true)
   private Date createdAt;
 
-  @Column(name = "version", updatable = true, nullable = true, length = 60)
+  @Column(name = "version", updatable = true, nullable = true, length = 500)
   private String version;
 
   @Column(name = "islast")
@@ -73,7 +73,7 @@ public class Snapshot extends BaseIdentifiable {
   @Column(name = "scope", updatable = true, nullable = true, length = 3)
   private String scope;
 
-  @Column(name = "path", updatable = true, nullable = true, length = 96)
+  @Column(name = "path", updatable = true, nullable = true, length = 500)
   private String path;
 
   @Column(name = "depth", updatable = true, nullable = true)
index 5aa183970f5ceb282c944b59bb42f525cf4bce63..18952d396c32f17325016fe18fb65fb5b9420f03 100644 (file)
@@ -24,6 +24,6 @@
 class IncreaseGroupNameSize < ActiveRecord::Migration
 
   def self.up
-    change_column :groups, :name, :string, :limit => 255, :null => true
+    change_column :groups, :name, :string, :limit => 500, :null => true
   end
 end
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/354_increase_snapshots_path_size.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/354_increase_snapshots_path_size.rb
new file mode 100644 (file)
index 0000000..1f21e43
--- /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 IncreaseSnapshotsPathSize < ActiveRecord::Migration
+
+  def self.up
+    change_column :snapshots, :path, :string, :limit => 500, :null => true
+  end
+end
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/355_increase_snapshots_version_size.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/355_increase_snapshots_version_size.rb
new file mode 100644 (file)
index 0000000..af5afd9
--- /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 IncreaseSnapshotsVersionSize < ActiveRecord::Migration
+
+  def self.up
+    change_column :snapshots, :version, :string, :limit => 500, :null => true
+  end
+end