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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:31:03+00:00 2026-05-30T20:31:03+00:00

Lets say I want to create a database of finished coding projects, developers, and

  • 0

Lets say I want to create a database of finished coding projects, developers, and their roles.

The models look like this:

project has_and_belongs_to_many developers
developers has_and_belongs_to_many projects

The developers_projects table look like this:

int: developer_id, project_id
string: role

Lets day I have 3 Developers and 2 projects with their respective id and names as

1, Ashley
2, Bob
3, Charles

1, Tic Tac Toe
2, Snake

And their actual roles being

Project 1:
- Manager: Ashley
- Coder: Bob, Charles

Project 2:
- Manager: Charles
- Coder: Ashley

Is it possible to define a managers and coders object under projects?

like:

class Project < ActiveRecord::Base
    has_and_belongs_to_many :developers
    has_and_belongs_to_many :managers, :class_name => "developers", :condition => "role = 'manager'"
    has_and_belongs_to_many :coders, :class_name => "developers", :condition => "role = 'coder'"
end

(this does not work)

Thank you in advance,

  • 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-30T20:31:04+00:00Added an answer on May 30, 2026 at 8:31 pm

    has_and_belongs_to_many allows to create join tables without declaring model. As far as you want to have attribute in this table you should create separate model, for example, ProjectRoles in your case:

    class ProjectRole < ActiveRecord::Base
      belongs_to :developer
      belongs_to :project
    
      attr_accessible :role
    end
    
    class Project < ActiveRecord::Base
      has_many :manager_roles, :class_name => "ProjectRole", 
                               :conditions => { :role => 'manager' }
      has_many :managers, :through => manager_roles
    end
    
    class Developer < ActiveRecord::Base
      has_many :project_roles
      has_many :projects, :through => project_roles
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say, I have a normal normalized database like this: CREATE TABLE `users` (
Lets say you want to create a listing of widgets The Widget Manufacturers all
I would appreciate any help on this issue. Lets say I want to load
I want to create a schedule update to my ios, lets say for example
Let's say that you want to create a dead simple BlogEditor and, one of
I want to create an object, let's say a Pie. class Pie def initialize(name,
I want to create variables inside a function from a dictionary. Let's say I
Let's say I create an instance of a class and want to assign some
Lets say I want to define 2 styles. .color_red { color: Red; } .banner
Lets say we want a library of javascript-based pieces of functionality (I'm thinking jquery):

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.