There was a record in my production DB on heroku which was causing a problem. I thought I would solve the issue by removing the record via heroku console which is what I did. After running a destroy on the record, I was expecting to see messages informing me of it's associations also being destroyed. What's ended up happening is heroku reports that the record is removed but my code is failing because of the same issue.
irb(main):025:0> m
=> #<Meeting id: 57, title: "test", message: "", start_at: "2013-02-13 04:00:00", end_at: nil, created_at: "2013-02-06 20:17:00", updated_at: "2013-02-12 01:33:08">
irb(main):026:0> m.destroy
(8.8ms) BEGIN
MeetingLocation Load (4.0ms) SELECT "meeting_locations".* FROM "meeting_locations" WHERE "meeting_locations"."meeting_id" = 57 LIMIT 1
MeetingUpdate Load (25.7ms) SELECT "meeting_updates".* FROM "meeting_updates" WHERE "meeting_updates"."meeting_id" = 57
SQL (41.7ms) DELETE FROM "meetings" WHERE "meetings"."id" = $1 [["id", 57]]
(4.1ms) COMMIT
It seems to have removed the meeting record (last log message) but 1) why did the associations not get removed? and 2) Am I crazy to think that the meeting record is still in some limbo state and is not actually removed from the DB? My code suggests that. Thanks.
dependent: :destroydeclared on your associations, the associations will also be destroyed. if not, then only the record will be destroyed. – jvnill Feb 12 at 5:46