blob: b4c61f708f42371f27eb67f9c65f98db5e638cfd (
plain) (
tree)
|
|
module Arel
class DeleteManager < Arel::TreeManager
def initialize engine
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
|