method
new
v6.1.7.7 -
Show latest stable
- Class:
Arel::Nodes::DeleteStatement
new(relation = nil, wheres = [])public
No documentation available.
# File activerecord/lib/arel/nodes/delete_statement.rb, line 13
def initialize(relation = nil, wheres = [])
super()
@left = relation
@right = wheres
@orders = []
@limit = nil
@offset = nil
@key = nil
end