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

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