mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
18 lines
296 B
Ruby
18 lines
296 B
Ruby
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
|