Skip to content

Instantly share code, notes, and snippets.

@RyanFriedman
Created February 5, 2013 19:34
Show Gist options
  • Save RyanFriedman/4716973 to your computer and use it in GitHub Desktop.
Save RyanFriedman/4716973 to your computer and use it in GitHub Desktop.
class User < ActiveRecord::Base
attr_accessible :profile_picture_album_id
has_many :albums
has_many :photos
has_many :profile_pictures,
:through => :albums,
:source => :profile_picture_album_id
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment