diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2015-06-10 17:34:31 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2015-06-12 11:21:02 +0200 |
commit | c6233985ff4a9715566def58c8dcd2e7821755e6 (patch) | |
tree | 4d8d0024c997fe31254ecf45a410f3de37e58e0a /server/sonar-web | |
parent | 817fdc3955489611f9e544e4c6e0c095378e0070 (diff) | |
download | sonarqube-c6233985ff4a9715566def58c8dcd2e7821755e6.tar.gz sonarqube-c6233985ff4a9715566def58c8dcd2e7821755e6.zip |
SONAR-6557 Remove useless migrations on dependencies
Diffstat (limited to 'server/sonar-web')
4 files changed, 0 insertions, 124 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/909_add_dependencies_component_uuids.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/909_add_dependencies_component_uuids.rb deleted file mode 100644 index 3823386ce28..00000000000 --- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/909_add_dependencies_component_uuids.rb +++ /dev/null @@ -1,31 +0,0 @@ -# -# 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-6256 -# -class AddDependenciesComponentUuids < ActiveRecord::Migration - - def self.up - execute_java_migration('org.sonar.server.db.migrations.v52.AddDependenciesComponentUuidColumns') - end - -end diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/910_feed_dependencies_component_uuids.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/910_feed_dependencies_component_uuids.rb deleted file mode 100644 index 742920ffe66..00000000000 --- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/910_feed_dependencies_component_uuids.rb +++ /dev/null @@ -1,31 +0,0 @@ -# -# 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-6256 -# -class FeedDependenciesComponentUuids < ActiveRecord::Migration - - def self.up - execute_java_migration('org.sonar.server.db.migrations.v52.FeedDependenciesComponentUuids') - end - -end diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/911_remove_dependencies_component_ids.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/911_remove_dependencies_component_ids.rb deleted file mode 100644 index 623c6e36709..00000000000 --- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/911_remove_dependencies_component_ids.rb +++ /dev/null @@ -1,31 +0,0 @@ -# -# 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-6256 -# -class RemoveDependenciesComponentIds < ActiveRecord::Migration - - def self.up - execute_java_migration('org.sonar.server.db.migrations.v52.DropDependenciesComponentColumns') - end - -end diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/914_add_dependencies_columns.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/914_add_dependencies_columns.rb deleted file mode 100644 index 9ca61077a13..00000000000 --- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/914_add_dependencies_columns.rb +++ /dev/null @@ -1,31 +0,0 @@ -# -# 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-6256 -# -class AddDependenciesColumns < ActiveRecord::Migration - - def self.up - execute_java_migration('org.sonar.server.db.migrations.v52.AddDependenciesColumns') - end - -end |