X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=app%2Fmodels%2Fproduct.rb;h=4854ee5c213d4f31da3bae6e6a31466582157667;hb=893fb158ba822c7ce7f5b3d011a2401e7f974f50;hp=27fbdabe21bba36592467e18883ed7556e0f039f;hpb=e0b92cc2e0d255a101ffa5248d4d15080fe2ea63;p=depot.git

diff --git a/app/models/product.rb b/app/models/product.rb
index 27fbdab..4854ee5 100644
--- a/app/models/product.rb
+++ b/app/models/product.rb
@@ -1,4 +1,7 @@
 class Product < ActiveRecord::Base
+  has_many :line_items
+  has_many :orders, :through => :line_items
+
   validates_presence_of :title, :description, :image_url
   validates_numericality_of :price
   validate :price_must_be_at_least_a_penny