by

module Trade; end

class Trade::Operation { where(op_type: :withdrawal) }
scope :deposits, -> { where(op_type: :deposit) }
end

You may also like