Guest User

Untitled

a guest
May 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Product < ActiveRecord::Base
  2. has_many :variations
  3. end
  4.  
  5.  
  6. class Variation < ActiveRecord::Base
  7. belongs_to :product
  8. def price
  9. product.price
  10. end
  11. end
Add Comment
Please, Sign In to add comment