Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. has_many :photo_relationships
  2. has_many :attributes, :through => :photo_relationships, :source => :related_attribute, :source_type => "Attribute"
  3.  
  4. belongs_to :photo #photo_id
  5. belongs_to :related_attribute, :polymorphic => true
  6.  
  7. has_many :photo_relationships, :as => :related_attribute, :dependent => :destroy
  8. has_many :photos, :through => :photo_relationships
  9.  
  10. photo = Photo.first
  11. photo.attributes.first.rating
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement