Trying to search where movies coming out have a release date greater than today\'s date
Movie.where(\'release > ?\', Date.today) ActiveRecord::StatementInval
In recent versions of rails, you can do this:
User.where(created_at: 3.days.ago..Time.now)
See some other examples here: https://stackoverflow.com/a/24150094