I have the following scope:
scope :comments, :conditions => [\'text_value IS NOT NULL\']
But I also want the conditions to say \"OR text_val
scope :comments, where("text_value <> ''")