2014-06-10から1日間の記事一覧

Rails4 where句をnotで否定する

私は今まで、点数がある点数以外のときというスコープを下記のように書いていました。 scope :score_is_not, ->(score) {where("score != ?", score)} いまさらですが、Rails4では、where句をnotで否定できるようです。 scope :score_is_not, ->(score) {whe…