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 885049
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T12:50:42+00:00 2026-05-15T12:50:42+00:00

I am trying to create a somewhat complex relationship in Rails, and am having

  • 0

I am trying to create a somewhat complex relationship in Rails, and am having some trouble finding the best way to do so. I have a Users table in which each user acts as a teacher and a student. I would like to have a has_many “students” (which are also just Users) and a has_many “teachers” (which are also just Users). I do not want to do any subclassing or single table inheritance. I just want two different many_to_many’s between Users. What is the best way to do this? Is this a bad idea to do? Is there a better solution?

  • 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-15T12:50:43+00:00Added an answer on May 15, 2026 at 12:50 pm

    you should be able to setup an assignment model and use it as you would any other many-to-many relationship:

    class User < ActiveRecord::Base
      has_many :student_teacher_assignments, :class_name => "StudentTeacherAssignment", :foreign_key => "student_id"
      has_many :teachers, :through => :student_teacher_assignments
      has_many :teacher_student_assignments, :class_name => "StudentTeacherAssignment", :foreign_key => "teacher_id"
      has_many :students, :through => :teacher_student_assignments
    end
    
    class StudentTeacherAssignment < ActiveRecord::Base
      belongs_to :student, :class_name => "User"
      belongs_to :teacher, :class_name => "User"
    end
    

    I would change the names of the assignments to be a little less similar and more meaningful, but the concept should remain the same

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

Sidebar

Related Questions

I'm trying to create a somewhat complex sorting feature which neither uses divs nor
I am trying to create an NSTextView that behaves somewhat like a series of
I am trying to create multiple dependent dropdowns (selects) with a unique way. I
I'm somewhat of a noob to python but I'm trying to create a recursive
I'm trying to create a pure ActionScript 3 AIR project, without Flex, somewhat like
I am trying to create some JUnit tests for a method that requires user
I'm trying to create some fixture data for my unit tests in CakePHP (via
I'm trying to create a page which looks somewhat like this: http://www.drmichaelbogdan.com/plastic-surgery/ (I'm referring
In trying to learn how to create objects in ActionScript, I have had no
I just got into somewhat complex databases (complex for me) and I have been

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.