blob: 610d69e460391eea4c0c19d6de46d367e5625a21 (
plain) (
tree)
|
|
module Arel
module Nodes
class DeleteStatement
attr_accessor :relation, :wheres
def initialize
@from = nil
@wheres = []
end
def initialize_copy other
super
@wheres = @wheres.clone
end
end
end
end
|