If you have a scope param that is time, the system is not converting it properly. For example ```ruby scope :my_scope, -> (the_time) { where(created_at > the_time) } ``` fails. work around is to do a to_s on the_time before passing it my_scope.
If you have a scope param that is time, the system is not converting it properly.
For example
fails.
work around is to do a to_s on the_time before passing it my_scope.