Skip to content

Instantly share code, notes, and snippets.

@hrysd
Created March 18, 2013 05:03
Show Gist options
  • Select an option

  • Save hrysd/5185197 to your computer and use it in GitHub Desktop.

Select an option

Save hrysd/5185197 to your computer and use it in GitHub Desktop.
class Account < ActiveRecord::Base
  with_options :dependent => :destroy do |assoc|
    assoc.has_many :customers
    assoc.has_many :products
    assoc.has_many :invoices
    assoc.has_many :expenses
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment