diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-09-24 11:57:15 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-09-25 15:03:00 +0200 |
commit | 47ab4975909b4c1b2bb0afdfdd90475e61d855b7 (patch) | |
tree | 324f3ea2f077c29ca6078469a2826ba685dc42d6 | |
parent | 5fe92c0d466745cc021009d9bd2685da6b484e9b (diff) | |
download | sonarqube-47ab4975909b4c1b2bb0afdfdd90475e61d855b7.tar.gz sonarqube-47ab4975909b4c1b2bb0afdfdd90475e61d855b7.zip |
SONAR-6859 add migration to remove sizeMetric properties from DB
3 files changed, 38 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/940_delete_technical_debt_size_metric.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/940_delete_technical_debt_size_metric.rb new file mode 100644 index 00000000000..abfaf3ea7d2 --- /dev/null +++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/940_delete_technical_debt_size_metric.rb @@ -0,0 +1,36 @@ +# +# 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-6859 +# +class DeleteTechnicalDebtSizeMetric < ActiveRecord::Migration + + class Property < ActiveRecord::Base + set_table_name 'properties' + end + + def self.up + Property.delete_all(['prop_key = ?', 'sonar.technicalDebt.sizeMetric']) + Property.delete_all(['prop_key like ?', 'languageSpecificParameters.%.size_metric']) + 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 9288973e08c..3054b88bd6d 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 = 939; + public static final int LAST_VERSION = 940; /** * 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 c31447fa036..6f4bb503f06 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 @@ -358,6 +358,7 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('936'); INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('937'); INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('938'); INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('939'); +INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('940'); 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; |