Sha256: ee7287de984bd0dadcceab86c1586384872e19989a1f4d95565faffba999f421
Contents?: true
Size: 465 Bytes
Versions: 15
Compression:
Stored size: 465 Bytes
Contents
# This migration comes from spina (originally 20130527124130) class RemoveDeprecatedColumnsFromSpinaPageParts < ActiveRecord::Migration def up remove_column :spina_page_parts, :file_id remove_column :spina_page_parts, :file remove_column :spina_page_parts, :position end def down add_column :spina_page_parts, :file_id, :integer add_column :spina_page_parts, :file, :string add_column :spina_page_parts, :position, :integer end end
Version data entries
15 entries across 15 versions & 1 rubygems