アクトインディ開発者ブログ

子供とお出かけ情報「いこーよ」を運営する、アクトインディ株式会社の開発者ブログです

Rails で is null と is not null

こんにちは、tahara です。

Rails で is null と is not null ってどうやって書くの?

is null

Foo.where(bar: nil)

is not null

Foo.where.not(bar: nil)

http://api.rubyonrails.org/classes/ActiveRecord/QueryMethods/WhereChain.html#method-i-not

ちゃんときれいに書けるんですね。