Sha256: 24876b421b04d36ff6b2d815b94bcc3399e4399c9ae22eee5fbb05f138048f2d

Contents?: true

Size: 415 Bytes

Versions: 1

Compression:

Stored size: 415 Bytes

Contents

class AddBizTxnAcctRootToProducts < ActiveRecord::Migration
  def up
    unless column_exists? :product_types, :biz_txn_acct_root_id
      add_column :product_types, :biz_txn_acct_root_id, :integer

      add_index :product_types, :biz_txn_acct_root_id
    end
  end

  def down
    if column_exists? :product_types, :biz_txn_acct_root_id
      remove_column :product_types, :biz_txn_acct_root_id
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
erp_products-4.2.0 db/migrate/20151216235328_add_biz_txn_acct_root_to_products.rb