Skip to content

Instantly share code, notes, and snippets.

Created January 27, 2016 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/5980902e6d9671a0ed33 to your computer and use it in GitHub Desktop.
Save anonymous/5980902e6d9671a0ed33 to your computer and use it in GitHub Desktop.
class Patient < ActiveRecord::Base
belongs_to :profile
has_many :invoices, dependent: :destroy
end
class Invoice < ActiveRecord::Base
belongs_to :patient
end
patient = user.profile.patient.first
patient.destroy
# Will this automatically destroy all patient invoices as it would in Rails 4.2.x?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment