I am trying to search to see if a posts value is either false or nil.
Post.where.not(:top_card => true)
This only returns the false values. I have confirmed that if I do either of the following it returns the correct values
Post.where(:top_card => false)
or
Post.where(:top_card => nil)
Any idea how I can get the posts with either the nil and false value?
Am I using the wrong method to search?