]> source.dussan.org Git - sonarqube.git/commitdiff
Remove unused migration.
authorJulien HENRY <julien.henry@sonarsource.com>
Mon, 10 Feb 2014 08:50:09 +0000 (09:50 +0100)
committerJulien HENRY <julien.henry@sonarsource.com>
Mon, 10 Feb 2014 08:50:48 +0000 (09:50 +0100)
sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql
sonar-server/src/main/webapp/WEB-INF/db/migrate/491_remove_leading_slash_from_resource_keys.rb [deleted file]

index cd313dd28c1c2ab4eee76e4ffd8b9616ea4bf311..8a82cd13684d9c9bfb5ee30afe4179cf359f79a3 100644 (file)
@@ -201,7 +201,6 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('486');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('488');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('489');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('490');
-INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('491');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('492');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('493');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('494');
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/491_remove_leading_slash_from_resource_keys.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/491_remove_leading_slash_from_resource_keys.rb
deleted file mode 100644 (file)
index 2084981..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# SonarQube, open source software quality management tool.
-# Copyright (C) 2008-2013 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.
-#
-
-#
-# Sonar 4.2
-# SONAR-926
-# TODO Only used to migrate latest milestone. Should be deleted before final release.
-#
-class RemoveLeadingSlashFromResourceKeys < ActiveRecord::Migration
-
-  class Project < ActiveRecord::Base
-  end
-
-  def self.up
-    resources = Project.find(:all, :conditions => ['path is not null'])
-    resources.each do |resource|
-      key = resource.kee.split(":").last
-      prefix = resource.kee.chomp(key)
-      if key != '/' && key.start_with?('/')
-        resource.kee = prefix + key[1, key.length]
-      end
-      resource.save
-    end
-  end
-
-end