class Arel::Nodes::DeleteStatement

Public Instance Methods

initialize_copy(other) click to toggle source
# File lib/arel/nodes/delete_statement.rb, line 13
def initialize_copy other
  super
  @right = @right.clone
end

Public Class Methods

new(relation = nil, wheres = []) click to toggle source
# File lib/arel/nodes/delete_statement.rb, line 9
def initialize relation = nil, wheres = []
  super
end