From: Simon Brandhof Date: Tue, 8 Sep 2015 13:16:19 +0000 (+0200) Subject: SONAR-6840 Allow measure values of integers with more than 10 digits in database X-Git-Tag: 5.2-RC1~461 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9309b09ba2dedf09df270ec6f64a3ff5b6160cd6;p=sonarqube.git SONAR-6840 Allow measure values of integers with more than 10 digits in database --- 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 index 00000000000..cf8874fcb05 --- /dev/null +++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/928_increase_precision_of_numerics.rb @@ -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 diff --git a/sonar-db/src/main/java/org/sonar/db/version/DatabaseVersion.java b/sonar-db/src/main/java/org/sonar/db/version/DatabaseVersion.java index 31d098b7d5e..2b51ffbafd6 100644 --- a/sonar-db/src/main/java/org/sonar/db/version/DatabaseVersion.java +++ b/sonar-db/src/main/java/org/sonar/db/version/DatabaseVersion.java @@ -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 diff --git a/sonar-db/src/main/resources/org/sonar/db/version/rows-h2.sql b/sonar-db/src/main/resources/org/sonar/db/version/rows-h2.sql index 2963913915a..526a96c5c5f 100644 --- a/sonar-db/src/main/resources/org/sonar/db/version/rows-h2.sql +++ b/sonar-db/src/main/resources/org/sonar/db/version/rows-h2.sql @@ -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;