]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2757 execute purges on all historical data after migration
authorSimon Brandhof <simon.brandhof@gmail.com>
Wed, 8 Feb 2012 17:51:51 +0000 (18:51 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Wed, 8 Feb 2012 17:52:12 +0000 (18:52 +0100)
sonar-core/src/main/resources/org/sonar/core/persistence/rows-derby.sql
sonar-server/src/main/webapp/WEB-INF/db/migrate/253_update_snapshots_purge_status.rb [deleted file]

index 0595de8d11d089d2972642c2ece47eef7f25871a..5bc729a4199662ab01245b8c45a277c6c9f7720c 100644 (file)
@@ -171,7 +171,6 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('241');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('250');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('251');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('252');
-INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('253');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('254');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('255');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('256');
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/253_update_snapshots_purge_status.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/253_update_snapshots_purge_status.rb
deleted file mode 100644 (file)
index 0138aff..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-# Sonar, entreprise quality control tool.
-# Copyright (C) 2008-2012 SonarSource
-# mailto:contact AT sonarsource DOT com
-#
-# Sonar 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.
-#
-# Sonar 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 Sonar; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
-#
-
-#
-# Sonar 2.14
-#
-class UpdateSnapshotsPurgeStatus < ActiveRecord::Migration
-
-  def self.up
-    Snapshot.update_all('purge_status=1', ['islast=?', false])
-  end
-
-end