I have the following scope:
scope :comments, :conditions => [\'text_value IS NOT NULL\']
But I also want the conditions to say \"OR text_val
rails 4
scope :comments, -> { where.not(:text_value => nil) }