Sha256: fb20b800375c38d81bc4247c0e0851f1582554f2fa1b7ca1ae7e7fa69f373ffd

Contents?: true

Size: 371 Bytes

Versions: 35

Compression:

Stored size: 371 Bytes

Contents

class ConvertDiscountsSectionsToArrayOfStrings < ActiveRecord::Migration
  def up
    add_column :discounts, :sections, :text
    drop_table :discounts_sections
  end

  def down
    create_table(:discounts_sections) do |t|
      t.integer :discount_id, :null => false
      t.integer :section_id, :null => false
    end
    remove_column :discounts, :sections
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
artfully_ose-1.3.0.pre4 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.3.0.pre3 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.3.0.pre2 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.3.0.pre1 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.beta.1 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.alpha.2 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.alpha.1 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.27 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.26 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.24 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.23 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.21 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.20 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.19 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.18 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.17 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.16 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.15 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb
artfully_ose-1.2.0.pre.12 db/migrate/20130111211929_convert_discounts_sections_to_array_of_strings.rb