instance method
destroy
Ruby on Rails 3.0.20
Since v3.0.20Signature
destroy(id)
Destroy an object (or multiple objects) that has the given id, the object is instantiated first, therefore all callbacks and filters are fired off before the object is deleted. This method is less efficient than ActiveRecord#delete but allows cleanup methods and other actions to be run.
This essentially finds the object (or multiple objects) with the given id, creates a new object from the attributes, and then calls destroy on it.
Parameters
-
id- Can be either an Integer or an Array of Integers.
Examples
# Destroy a single object
Todo.destroy(1)
# Destroy multiple objects
todos = [1,2,3]
Todo.destroy(todos)
Parameters
-
idreq
Source
# File activerecord/lib/active_record/relation.rb, line 249
def destroy(id)
if id.is_a?(Array)
id.map { |one_id| destroy(one_id) }
else
find(id).destroy
end
end
Defined in activerecord/lib/active_record/relation.rb line 249
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Relation