0

我正在尝试添加范围,其中sign_in_count列不是的所有记录0

我怎样才能?

scope :confirmed, where("sign_in_count" => 0)

这可能会获取所有sign_in_count为 0 的记录。

我要相反。我怎样才能?

4

1 回答 1

2
scope :confirmed, where("sign_in_count <> 0 ")
于 2013-08-28T17:58:26.690 回答