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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:06:42+00:00 2026-06-06T15:06:42+00:00

I am using a has_many through association and having trouble getting the before_destroy call

  • 0

I am using a has_many through association and having trouble getting the before_destroy call back to trigger. I am using a Relating class to relate models.

class Relating < ActiveRecord::Base
  belongs_to :relater, :polymorphic => true
  belongs_to :related, :polymorphic => true

  before_destroy :unset_reminders
end

For example, a user can add TvShows to a list of favorites, User.rb:

has_many :tv_shows, :through => :relateds, :source => :related, :source_type => 'TvShow'

The problem I am having, has to do with deleting this Relating record.

I can relate users and tv shows by:

user = User.find(1)
show = TvShow.find(1)
user.tv_shows << show

But when I want to remove this association, the before_destroy is not triggered by:

user.tv_shows.delete(show)

However, if I destroy the relating record manually, it does trigger the callback:

r = Relating.find(8012)
r.destroy

How can I get the before destroy to be triggered for this?

Thanks

  • 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-06T15:06:43+00:00Added an answer on June 6, 2026 at 3:06 pm

    The delete method does not trigger callbacks as mentioned in the docs here. Try destroy instead.

    Update: I didn’t realize you were trying to destroy the join record and not the show itself. I’m surprised delete works at all but perhaps that is a feature of has_many :through. How about:

    user.relateds.where(tv_show_id: show.id).destroy
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using a :has_many, :through association to link two models, User and Place It
I'm having trouble getting the results of a has_many query using php idiorm/paris. Following
My app uses a :has_many :through association, and I'm having trouble figuring out how
I'm having trouble using delayed deltas with thinking_sphinx. This is the model: Event has_many
I'm having problems adding to a Has Many Through association using user_ids . My
Using has_many => through association. Here is what i have. :planning model has_many :acttypes
I'm using rails 3.1 with Devise for user authentication... I'm having trouble either getting
I setup a has_many through association with my models and I am trying to
I'm using has_many :through to specify a many-to-many association between two entities and I
I'm learning Ruby on Rails. I'm using some associations (has_many :through, ...) But i'm

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.