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