Skip to content

Instantly share code, notes, and snippets.

@wallace
Created August 7, 2012 11:43
Show Gist options
  • Select an option

  • Save wallace/3284742 to your computer and use it in GitHub Desktop.

Select an option

Save wallace/3284742 to your computer and use it in GitHub Desktop.
class LineItem < ActiveRecord::Base
belongs_to :product
belongs_to :order
validates :price, :quantity, numericality: true
validates :product_id, :order_id, presence: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment