I have the following associations: disks->disks_user_files<-user_files my models look like: class Disk < ActiveRecord::Base has_many :disk_user_files has_many :user_files, through => :disk_user_files end class DiskUserFile < ActiveRecord::Base belongs_to :disk belongs_to :user_file end class UserFile < ActiveRecord::Base has_many :disk_user_files has_many :disks, :through => :disk_user_files end So far so good. I want to extend this to something like disks->disks_user_files<-user_files<-users so I add :belongs_to :user to my UserFile class and add: class User < ActiveRecord::Base :has_many :user_files end The problem I''m having is associating users all the way back through user_files and disk_user_files to disks Any help would be appreciated. Jon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---