Top "Dependent-destroy" questions

How to destroy a record with has_many, :dependent => :destroy

I've built a Rail 3 AuditLog with the help of a few plugins, that store data in an AuditLog Table with …

ruby-on-rails ruby-on-rails-3 dependent-destroy
Rails dependent which options are possible?

I get the following error in Rails 4 dependent option must be one of destroy delete apparently https://github.com/rails/…

ruby-on-rails ruby-on-rails-4 destroy dependent-destroy
has_one/has_many with dependent destroy but using a different name for the key

So I'm looking at someone's code which has the following (paraphrased): class user has_one :connection, :dependent => :destroy has_…

ruby-on-rails model associations polymorphic-associations dependent-destroy