cirandas.net

ref: master

db/migrate/20110527042608_remove_unused_column_from_products.rb


1
2
3
4
5
6
7
8
9
class RemoveUnusedColumnFromProducts < ActiveRecord::Migration
  def self.up
    remove_column :products, :image
  end

  def self.down
    add_column :products, :image, :string
  end
end