method
except_predicates
v6.0.0 -
Show latest stable
- Class:
ActiveRecord::Relation::WhereClause
except_predicates(columns)private
No documentation available.
# File activerecord/lib/active_record/relation/where_clause.rb, line 145
def except_predicates(columns)
predicates.reject do |node|
Arel.fetch_attribute(node) { |attr| columns.include?(attr.name.to_s) }
end
end