Skip to content

Instantly share code, notes, and snippets.

@lolmaus
Created September 1, 2011 08:44
Show Gist options
  • Save lolmaus/1185735 to your computer and use it in GitHub Desktop.
Save lolmaus/1185735 to your computer and use it in GitHub Desktop.
class AddPriceToLineItems < ActiveRecord::Migration
def self.up
add_column :line_items, :price, :decimal
LineItem.all.each do |line_item|
line_item.price = line_item.product.price
line_item.save
end
end
def self.down
remove_column :line_items, :price
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment