I'm running Feed.history but It's raising the error above at the title because of the scope line I use in Feed model:

scope :history, -> { or({:end.ne => nil}, {:end.lt => Time.current}) }

what and why?!!

有帮助吗?

解决方案

Try this

scope :history, where('$or' => [{:end.ne => nil}, {:end.lt => Time.current}])
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top