Sha256: be67f71ff89ad662aea9ae9514da8f364aa6df384544b1790c05e61c558ab5c8

Contents?: true

Size: 653 Bytes

Versions: 18

Compression:

Stored size: 653 Bytes

Contents

class ConvertHabtmToHmtForOptionTypePrototypes < ActiveRecord::Migration
  def up
    add_column :spree_option_types_prototypes, :id, :primary_key
    add_column :spree_option_types_prototypes, :created_at, :datetime
    add_column :spree_option_types_prototypes, :updated_at, :datetime

    rename_table :spree_option_types_prototypes, :spree_option_type_prototypes
  end

  def down
    remove_column :spree_option_types_prototypes, :id
    remove_column :spree_option_types_prototypes, :created_at
    remove_column :spree_option_types_prototypes, :updated_at

    rename_table :spree_option_type_prototypes, :spree_option_types_prototypes
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
solidus_core-1.4.2 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.3.2 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.2.3 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.4.1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.4.0 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.4.0.rc1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.4.0.beta1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.3.1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.3.0 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.3.0.rc2 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.3.0.rc1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.3.0.beta1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.2.2 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.2.1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.2.0 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.2.0.rc2 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.2.0.rc1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb
solidus_core-1.2.0.beta1 db/migrate/20151124062500_convert_habtm_to_hmt_for_option_type_prototypes.rb