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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:43:10+00:00 2026-06-01T06:43:10+00:00

I have two user types in my application: Investors and Advisors , they both

  • 0

I have two user types in my application: Investors and Advisors, they both have a separate model and table in database (Investor model, Advisor model, Investors table and Advisors table).

I need to create a table to keep advisor’s profile data and a different table to keep investor’s profile(they have completely different fields in profile, so i cant merge into a single table). What name should i give to it? If i call it investor_profile – then every time i want to get a data from it i have to call it investor->investor_profile->field_name but thats seems bad to type investor twice.

Any advises for a proper name? Or maybe a trick to make it investor->profile->field_name?

Thank you.

  • 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-06-01T06:43:12+00:00Added an answer on June 1, 2026 at 6:43 am

    You might store different tables for investor_profiles and advisor_profiles with separate models InvestorProfile, AdvisorProfile (which both might inherit from a base Profile class, assuming they have at least a tiny bit of overlap).

    But in your model associations, use the :class_name option to hide the _profiles:

    class Investor < ActiveRecord::Base
     has_one :profile, :class_name => "InvestorProfile" 
    end
    
    
    class Advisor < ActiveRecord::Base
     has_one :profile, :class_name => "AdvisorProfile" 
    end
    
    # And since the profiles probably overlap in some way
    # a profile base class which the other 2 profile classes extend
    class Profile < ActiveRecord::Base
      # base options like name, address, etc...
    end  
    class InvestorProfile < Profile
      # Investor-specific stuff
    end
    class AdvisorProfile < Profile
      # Advisor-specific stuff
    end
    

    In practice then, you can refer to it as self.profile:

    # Use it as
    adv = Advisor.new
    puts adv.profile.inspect
    

    See the ActiveRecord::Associations documentation for descriptions of the options.

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

Sidebar

Related Questions

I have an application where there are two types of user currently, Admin and
I have two tables user table user_id | name | 1 | peter |
I have an application which communicates with a database. Each table has a unique
I have two types of users Client and Vendor for my MVC 3 application.
We have an application that has two types of users. Depending on how the
I'm developing a Rails 3 application that has two user types: Teacher and Company.
I'm developing a Rails 3 application that has two user types: Teacher and Company.
I'm building an application that will have two different types of users, lets call
I'm designing an application that has two [three including administrators] user types: Buyers and
I have a GWT application that features two frames (com.google.gwt.user.client.ui.Frame). Via Frame.setUrl(...) I can

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.