Guest User

Untitled

a guest
Apr 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class Parent < ActiveRecord::Base
  2.  
  3. has_many :children, :dependent => :destroy do
  4. def alive
  5. find_with_status("alive")
  6. end
  7. end
  8.  
  9. end
  10.  
  11. Person.children.alive # NoMethodError: undefined method `alive' for #<Class:0x101ff4630>
Add Comment
Please, Sign In to add comment