Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6055501
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:16:17+00:00 2026-05-23T08:16:17+00:00

I’m trying to set up a self-referential relationship, as described in this great video

  • 0

I’m trying to set up a self-referential relationship, as described in this great video – http://railscasts.com/episodes/163-self-referential-association – and it’s mostly working, but not entirely working.

I have these entities: Users, who can either be a mentor or a mentee; Matches, which have a mentor_id (user.id), mentee_id (user.id), and status_id; and Statuses, which are a plain lookup table.

My User model looks like this:

class User < ActiveRecord::Base   

has_many :matches
has_many :mentors, :through => :matches
has_many :mentees, :through => :matches
has_many :statuses, :through => :matches

end

My Status model looks like this:

class Status < ActiveRecord::Base
  has_many :matches
end

My Match model looks like this:

class Match < ActiveRecord::Base
  belongs_to :mentor, :class_name => "User"
  belongs_to :mentee, :class_name => "User"
  belongs_to :status 
end

When I puts user.mentors I get SQLite3::SQLException: no such column: matches.user_id: SELECT “users”.* FROM “users” INNER JOIN “matches” ON “users”.id = “matches”.mentor_id WHERE ((“matches”.user_id = 1))

Simply, I was hoping to do user.matches.find(1).status.id .. Any ideas on what I’m doing wrong?

Thanks in advance.
Jon

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T08:16:18+00:00Added an answer on May 23, 2026 at 8:16 am

    I’m pretty sure you’re looking for:

    class User < ActiveRecord::Base
      has_many :match_mentors, :foreign_key => "mentee_id", :class_name => "Match"
      has_many :match_mentees, :foreign_key => "mentor_id", :class_name => "Match"
    
      has_many :mentors, :through => :match_mentors
      has_many :mentees, :through => :match_mentees
    
      def status_with_mentee mentee_id
        match = match_mentees.find_by_mentee_id(mentee_id)
        return nil if match.nil? 
        match.status
      end
    end
    
    
    class Match < ActiveRecord::Base
      belongs_to :mentor, :class_name => "User"
      belongs_to :mentee, :class_name => "User"
      belongs_to :status
    
      after_create :set_status
    
      def set_status
       Status.find(1).matches << self #replace 1 with the id you want
      end
    end
    

    Which gives:

    u = User.create
    u.mentors               => [] 
    u.mentors.create        => #<User id: 2, name: nil, created_at: "2011-06-17 19:02:17", updated_at: "2011-06-17 19:02:17"> 
    u.mentors               => [#<User id: 2, name: nil, created_at: "2011-06-17 19:02:17", updated_at: "2011-06-17 19:02:17">] 
    v = u.mentors.first     => #<User id: 2, name: nil, created_at: "2011-06-17 19:02:17", updated_at: "2011-06-17 19:02:17"> 
    v.mentees               => [#<User id: 1, name: nil, created_at: "2011-06-17 18:58:44", updated_at: "2011-06-17 18:58:44">] 
    

    EDIT, to associate a mentee:

    current_user.mentees << User.find(params[:mentee_id])
    

    Rails will handle everything properly.

    To know which is the relation between a mentor and one of his mentees:

    current_user.status_with_mentee(params[:mentee_id])
    

    Of course, you can create the same for mentor relationship

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I am trying to render a haml file in a javascript response like so:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.