Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class ApplicationModel < ActiveRecord::Base
  2.  
  3. self.abstract_class = true
  4.  
  5. class ActiveRecord::Relation
  6.  
  7. def where args
  8. # Do your stuff here
  9. super
  10. end
  11.  
  12. end
  13.  
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement