method
initialize_copy
v7.2.3 -
Show latest stable
- Class:
Arel::Nodes::DeleteStatement
initialize_copy(other)public
No documentation available.
# File activerecord/lib/arel/nodes/delete_statement.rb, line 21
def initialize_copy(other)
super
@relation = @relation.clone if @relation
@wheres = @wheres.clone if @wheres
end