aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/delete_statement.rb
blob: 54bf513c2b172a674ede0032b0e18e5c1246cbbd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                      
module Arel
  module Nodes
    class DeleteStatement
      attr_accessor :relation, :wheres

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