aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/update_statement.rb
blob: 3df54bb3a943d78577ec0d2369049daf0faa44de (plain) (tree)
1
2
3
4
5
6
7
8
9


                         
                                               



                       
                       



         
module Arel
  module Nodes
    class UpdateStatement
      attr_accessor :relation, :wheres, :values

      def initialize
        @relation = nil
        @wheres   = []
        @values   = nil
      end
    end
  end
end