diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-10-18 17:06:58 +0200 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-10-18 17:06:58 +0200 |
commit | ffe6ace0cd34f32e531281494427f84d047c2a2a (patch) | |
tree | ce404718a58b7d8d832736e2d31b53dae6d0b2b3 /sonar-server | |
parent | 42bd6b8bd3536dba0e756b8c8e0b9ae7dfcd94f6 (diff) | |
download | sonarqube-ffe6ace0cd34f32e531281494427f84d047c2a2a.tar.gz sonarqube-ffe6ace0cd34f32e531281494427f84d047c2a2a.zip |
SONAR-4416 Migrate existing timeline widgets to adapt to new render code
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/db/migrate/444_resize_timeline_widgets.rb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/444_resize_timeline_widgets.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/444_resize_timeline_widgets.rb new file mode 100644 index 00000000000..e84a3027a03 --- /dev/null +++ b/sonar-server/src/main/webapp/WEB-INF/db/migrate/444_resize_timeline_widgets.rb @@ -0,0 +1,44 @@ +# +# Sonar, entreprise quality control 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.0 +# SONAR-4416 - Migrate saved timeline chart heights to adapt to new render code (chartHeight += 100) +# + +class ResizeTimelineWidgets < ActiveRecord::Migration + + class Widget < ActiveRecord::Base + end + + class WidgetProperty < ActiveRecord::Base + end + + def self.up + Widget.reset_column_information + WidgetProperty.reset_column_information + + Widget.find(:all, :conditions => { :widget_key => 'timeline' }).each do |widget| + WidgetProperty.find(:all, :conditions => { :widget_id => widget.id, :kee => 'chartHeight' }).each do |property| + property.update_attributes!(:text_value => (property.read_attribute(:text_value).to_i + 100).to_s) + end + end + end +end |