Advertisement
saasbook

scopes_recently_reviewed.rb

Aug 15th, 2013
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.16 KB | None | 0 0
  1. class Movie < ActiveRecord::Base
  2.   scope :recently_reviewed, lambda { |n|
  3.     Movie.joins(:reviews).where(['reviews.created_at >= ?', n.days.ago]).uniq
  4.   }
  5. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement