]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-6840 Allow measure values of integers with more than 10 digits in database
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Tue, 8 Sep 2015 13:16:19 +0000 (15:16 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 9 Sep 2015 07:46:36 +0000 (09:46 +0200)
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/928_increase_precision_of_numerics.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

diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/928_increase_precision_of_numerics.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/928_increase_precision_of_numerics.rb
new file mode 100644 (file)
index 0000000..cf8874f
--- /dev/null
@@ -0,0 +1,39 @@
+#
+# 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.2
+# SONAR-6710
+#
+class IncreasePrecisionOfNumerics < ActiveRecord::Migration
+
+  def self.up
+    change_column :metrics, :worst_value, :decimal,  :null => true, :precision => 30, :scale => 5
+    change_column :metrics, :best_value, :decimal,  :null => true, :precision => 30, :scale => 5
+    change_column :project_measures, :value, :decimal,  :null => true, :precision => 30, :scale => 5
+    change_column :project_measures, :variation_value_1, :decimal,  :null => true, :precision => 30, :scale => 5
+    change_column :project_measures, :variation_value_2, :decimal,  :null => true, :precision => 30, :scale => 5
+    change_column :project_measures, :variation_value_3, :decimal,  :null => true, :precision => 30, :scale => 5
+    change_column :project_measures, :variation_value_4, :decimal,  :null => true, :precision => 30, :scale => 5
+    change_column :project_measures, :variation_value_5, :decimal,  :null => true, :precision => 30, :scale => 5
+    change_column :manual_measures, :value, :decimal,  :null => true, :precision => 30, :scale => 5
+  end
+
+end
index 31d098b7d5e4b237dafcbdd6dda2f42b7b79fe7f..2b51ffbafd6d5520a35abadb0a9abf3cc175abc9 100644 (file)
@@ -29,7 +29,7 @@ import org.sonar.db.MyBatis;
 
 public class DatabaseVersion {
 
-  public static final int LAST_VERSION = 927;
+  public static final int LAST_VERSION = 928;
 
   /**
    * The minimum supported version which can be upgraded. Lower
index 2963913915ac786d0cfbd5d04735e59cd1c81178..526a96c5c5f9212a22e9a60f4ba2a999295dee43 100644 (file)
@@ -346,6 +346,7 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('924');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('925');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('926');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('927');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('928');
 
 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', '1418215735482', '1418215735482', null, null);
 ALTER TABLE USERS ALTER COLUMN ID RESTART WITH 2;