relation.where("status != ?", "complete").exists? # => nil
relation.where("coalesce(status, '') != ?", "complete").exists? # => "1"
Really Postgres? NULL == 'string'
? Really?
relation.where("status != ?", "complete").exists? # => nil
relation.where("coalesce(status, '') != ?", "complete").exists? # => "1"
Really Postgres? NULL == 'string'
? Really?