Sha256: 69a4da1a823f051c2ba5457f40d3adbbd84dc87d941a31c228aef382169cabe0

Contents?: true

Size: 726 Bytes

Versions: 2

Compression:

Stored size: 726 Bytes

Contents

# This migration comes from tb_cms (originally 20121119030136)
class ChangeLiquidTagsToPolymorphic < ActiveRecord::Migration
  def up
    rename_column :spud_page_liquid_tags, :spud_page_partial_id, :attachment_id
    add_column :spud_page_liquid_tags, :attachment_type, :string
    add_index :spud_page_liquid_tags, [:attachment_type, :attachment_id], name: 'inde_spud_page_liquid_tags_on_attachment'
    if defined?(SpudPageLiquidTag)
      SpudPageLiquidTag.all.each do |f|
        f.update_attributes(attachment_type: 'SpudPagePartial')
      end
    end
  end

  def down
    rename_column :spud_page_liquid_tags, :attachment_id, :spud_page_partial_id
    remove_column :spud_page_liquid_tags, :attachment_type
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tb_cms-1.3.0 spec/dummy/db/migrate/20141231214480_change_liquid_tags_to_polymorphic.tb_cms.rb
tb_cms-1.3.beta1 spec/dummy/db/migrate/20141231214480_change_liquid_tags_to_polymorphic.tb_cms.rb