20100619031945_add_highlighted_to_product.rb 194 Bytes
class AddHighlightedToProduct < ActiveRecord::Migration
  def self.up
    add_column :products, :highlighted, :boolean
  end

  def self.down
    remove_column :products, :highlighted
  end
end