ActiveRecord where.not
When I need a IS NULL
SQL expression with ActiveRecord it is easy to avoid a SQL string fragment.
But in early versions of Rails using IS NOT NULL
required a string.
But modern Rails has where.not
expressions which can eliminate the string.