Sha256: a9db171584d09a0ccf7d94fd5574451cff621dacae784caa220909ca4544bc20

Contents?: true

Size: 701 Bytes

Versions: 26

Compression:

Stored size: 701 Bytes

Contents

class ConvertHabtmToHmtForProductsPromotionRules < ActiveRecord::Migration
  def up
    add_column :spree_products_promotion_rules, :id, :primary_key
    add_column :spree_products_promotion_rules, :created_at, :datetime
    add_column :spree_products_promotion_rules, :updated_at, :datetime

    rename_table :spree_products_promotion_rules, :spree_product_promotion_rules
  end

  def down
    rename_table :spree_product_promotion_rules, :spree_products_promotion_rules

    remove_column :spree_products_promotion_rules, :id, :primary_key
    remove_column :spree_products_promotion_rules, :created_at, :datetime
    remove_column :spree_products_promotion_rules, :updated_at, :datetime
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
solidus_core-1.4.2 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.3.2 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.2.3 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.1.4 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.4.1 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.4.0 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.4.0.rc1 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.4.0.beta1 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.3.1 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.3.0 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.3.0.rc2 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.3.0.rc1 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.3.0.beta1 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.2.2 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.2.1 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.1.3 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.2.0 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.2.0.rc2 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.1.2 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb
solidus_core-1.2.0.rc1 db/migrate/20150824214129_convert_habtm_to_hmt_for_products_promotion_rules.rb