Sha256: 8f1c9556f77df3c8d9c26c3ab784b2cc89728e43a93733a803f2c9335c519976

Contents?: true

Size: 280 Bytes

Versions: 6

Compression:

Stored size: 280 Bytes

Contents

class DropMasterPriceFromProducts < ActiveRecord::Migration
  def self.up
    change_table :products do |t|
      t.remove :master_price
    end
  end

  def self.down
    change_table :products do |t|
      t.decimal :master_price, :precision => 8, :scale => 2
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
spree-enriquez-0.9.4 db/migrate/20090809201209_drop_master_price_from_products.rb
spree-0.9.4 db/migrate/20090809201209_drop_master_price_from_products.rb
spree-0.9.3 db/migrate/20090809201209_drop_master_price_from_products.rb
spree-0.9.2 db/migrate/20090809201209_drop_master_price_from_products.rb
spree-0.9.1 db/migrate/20090809201209_drop_master_price_from_products.rb
spree-0.9.0 db/migrate/20090809201209_drop_master_price_from_products.rb