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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T06:25:14+00:00 2026-05-17T06:25:14+00:00

Well the situation is bit more complicated than that ! I have a question

  • 0

Well the situation is bit more complicated than that !

I have a question model

class Question < ActiveRecord::Base
  has_many :answers, :dependent => :destroy

then an answer Model

class Answer < ActiveRecord::Base
  belongs_to :question, :counter_cache => true
  has_many :rep_events, :class_name => "RepEvent", :foreign_key => "event_id", :dependent => :destroy

and Finaly a rep_event model

class RepEvent < ActiveRecord::Base
  belongs_to :answer   
end

My rep event doesnt have any primary key.
it only has event_id that acts like answer_id

When i destroy a Question, I want to delete everything that is related to it ( Question, Answers and Rep_Events ) Thats why I’m using :dependent => :destroy
I tried to enter the console and test it but it gives me some error

NoMethodError: undefined method `eq' for nil:NilClass

This error is very general but I believe the problem is that my rep_event class does not have any “answer_id” field but only event_id. thats why I used foreign_key => “event_id” in my relationship.

Can anyone tell me what the problem is ?

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-05-17T06:25:15+00:00Added an answer on May 17, 2026 at 6:25 am

    The foreign key is not present in the Answer model, instead RepEvent model has a foreign key called ‘event_id’ that acts like answer_id, and links to the Answer model. If this scenario is right you will have to do following changes in the RepEvent model

    class RepEvent < ActiveRecord::Base
      belongs_to :answer, :foreign_key => event_id
    end
    

    and in your Answer model

    class Answer < ActiveRecord::Base
      belongs_to :question, :counter_cache => true
      has_many :rep_events, :class_name => "RepEvent", :dependent => :destroy
    end
    

    Try this this must work.

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

Sidebar

Related Questions

Well... simple question, right? But with no so simple answers. In firefox i use
at work I am struggling a bit with the following situation: We have a
I have an Arduino application (well actually a library) that has a number of
Well the subject is the question basically. Are there any version control systems out
Well, this is my first post here and really enjoying the site. I have
Well this is incredibly frustrating. After being nagged by Rails that I need to
well i have this messages table with sample values like these: msg_id recipient_id read
I realize that this question is slightly server related and could be posted on
Background : I have a small Python application that makes life for developers releasing
Original question: An affiliate partner of us has a website that is vulnerable to

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.