You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 30, 2022. It is now read-only.
I have an existing Rails 3.1 app with complex scopes that use simple hash conditions like
Article.published.It worked before I added squeel. The problem is that its
.to_sqlstarted to generate incorrect SQL:Not the WHERE clause and the
approvedcolumn that doesn't exist. It was specified on the scope:I would prefer to keep existing AR queries and use squeel here and there.
Or maybe I'm just doing something wrong?
Also tried to
config.load_core_extensions :symbol, but it only seems compatibility with MetaWhere.