これを試してください:
# Notice single = vs ==
WHERE (archived = 1)
更新 やった
scope :is_archived, where('archived != ?', 1)
scope :not_archived, where('archived = ?', 1)
これはうまくいきました。ありがとう!
これを試してください:
# Notice single = vs ==
WHERE (archived = 1)
更新 やった
scope :is_archived, where('archived != ?', 1)
scope :not_archived, where('archived = ?', 1)
これはうまくいきました。ありがとう!