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

                                         
                  
           
                                       
                 


                     
                              


          
                    
                        


       
module Arel
  class DeleteManager < Arel::TreeManager
    def initialize
      super
      @ast = Nodes::DeleteStatement.new
      @ctx = @ast
    end

    def from relation
      @ast.relation = relation
      self
    end

    def wheres= list
      @ast.wheres = list
    end
  end
end