Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Mysql2::Error:Você tem um erro na sua sintaxe SQL


Tente isto:
# Notice single = vs ==
WHERE (archived = 1)

Atualizar Acabei fazendo
scope :is_archived, where('archived != ?', 1)
scope :not_archived, where('archived = ?', 1)

Isso funcionou muito bem. Obrigado!