Domanda

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?!!

È stato utile?

Soluzione

Try this

scope :history, where('$or' => [{:end.ne => nil}, {:end.lt => Time.current}])
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top