Guest User

Untitled

a guest
Jan 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Parent < ActiveRecord::Base
  2. class << self; alias_method :old_group, :group; end
  3. scope :group, lambda { |g|
  4. old_group("#{table_name}.#{g}")
  5. }
  6. end
  7.  
  8. Parent.join(:child).group(:name)
Add Comment
Please, Sign In to add comment