alf-tool/alf-sql

View on GitHub
lib/alf/predicate/nodes/or.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Alf
  class Predicate
    module Or

      def to_sql_operator
        Sql::Expr::OR
      end

    end
  end
end