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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:56:36+00:00 2026-05-24T09:56:36+00:00

I have models User and Message. Every user can send messages to other users.

  • 0

I have models User and Message. Every user can send messages to other users. In User there are no fields related to the Message. In Message there are the following: from_id, to_id, content.

I was trying to work it myself, but got confused after a few minutes.

What combination of has_many has_one, belongs_to should I use in each model? There should be the following methods available:

msg.from => author of the message
msg.to => receiver
usr.sent_messages => array of sent messages
usr.received_messages => array of received messages

Moreover I want the message to be destroyed when either sender or receiver is destroyed. So :dependent=>:destroy is needed somewhere

This are my attempts, which of course don’t work:

User:

has_many :sent_messages, :source => :message, :dependent => :destroy
has_many :received_messages, :source => :message, :dependent => :destroy

Message:

has_one :from, :source=>:user
has_one :to, :source=>:user

Thanks in advance,

Bye

  • 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-24T09:56:38+00:00Added an answer on May 24, 2026 at 9:56 am

    You could do it like this:

    ## User
      has_many :received_messages, :foreign_key => :to_id, :class_name => 'Message', :dependent => :destroy
      has_many :sent_messages, :foreign_key => :from_id, :class_name => 'Message', :dependent => :destroy
    
    ## Message
      belongs_to :from, :class_name => 'User', :foreign_key => :from_id
      belongs_to :to, :class_name => 'User', :foreign_key => :to_id
    

    Just remember that when doing associations, when you do a belongs_to it means that the object that belongs is a weak entity, so it has to contain the foreign key, when you say has_one or has_many, the object that has is the strong entity so it does not contain the foreign key.

    Think about it by the existence idea, if an object can exist without it’s association, it’s a strong entity, if it can’t exist without it, it’s a weak one.

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

Sidebar

Related Questions

Say I have two entities in Doctrine2 that are related to each other, Models\User
I have two models named message.php and user.php In message.php, I have following method
I have the following models: class Message(models.Model): date = models.DateTimeField() user = models.ForeignKey(User) thread
I have two models: class User end class Message belongs_to :sender, :class_name=> 'User' belongs_to
I have two models -- User and Entry -- that are related through a
Suppose I have the following models: class User(models.Model): pass class A(models.Model): user = models.ForeignKey(User)
I have the following model set up: class UserProfile(models.Model): Additional attributes for users. url
I have a Rails 2.3 app with the following models. class Message << AR::Base
In my rails app I have the following models: Messages (id, title, content, project_id)
I have 4 models, Message, Group, User, Membership class Group < ActiveRecord::Base has_many :memberships

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.