Guest User

Untitled

a guest
Oct 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. def self.search(text)
  2. self.where([
  3. "users.email = ? OR coupons.code = ?",
  4. text, text
  5. ]).
  6. includes(:user, :coupon).
  7. order("orders.created_at DESC")
  8. end
Add Comment
Please, Sign In to add comment