aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/sql_literal.rb
blob: 45866adfa83f6c055779b422b577d368fa7b6733 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                           
module Arel
  module Nodes
    class SqlLiteral
      attr_accessor :string

      def initialize string
        @string = string
      end
    end
  end
end