aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/update_statement.rb
blob: 9f069cddb3307c4a0dff00c601d244ef10dd31e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Arel
  module Nodes
    class UpdateStatement
      attr_accessor :relation, :wheres, :values

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