module ActiveRecord::SpawnMethods
def except(*skips)
Post.order('id asc').except(:order) # discards the order condition
Removes from the query the condition(s) specified in +skips+.
def except(*skips) relation_with values.except(*skips) end
def except(*skips) relation_with values.except(*skips) end