Skip to content

Instantly share code, notes, and snippets.

@deJaVisions
Created September 28, 2011 07:46
Show Gist options
  • Select an option

  • Save deJaVisions/1247266 to your computer and use it in GitHub Desktop.

Select an option

Save deJaVisions/1247266 to your computer and use it in GitHub Desktop.
class UpdateLineItemsWithPrice < ActiveRecord::Migration
def up
LineItem.all.each do |item|
item.price = item.product.price
item.save
end
end
def down
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment