aboutsummaryrefslogtreecommitdiffstats
path: root/spec/dummy/db/migrate/20110802081569_translate_custom_title_on_pages.rb
blob: ab21e11369173e93554158aeb534cc81be6ab606 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class TranslateCustomTitleOnPages < ActiveRecord::Migration
  def self.up
    unless ::Refinery::Page.translation_class.column_names.map(&:to_sym).include?(:custom_title)
      add_column ::Refinery::Page.translation_class.table_name, :custom_title, :string

      # Re-save custom_title
      ::Refinery::Page.all.each do |page|
        page.update_attribute(:custom_title, page.untranslated_attributes['custom_title'])
      end

    end
  end

  def self.down
    # Re-save custom_title
    ::Refinery::Page.all.each do |page|
      ::Refinery::Page.update_all({
        :custom_title => page.attributes['custom_title']
      }, {
        :id => page.id.to_s
      }) unless page.attributes['custom_title'].nil?
    end

    remove_column ::Refinery::Page.translation_class.table_name, :custom_title
  end
end