delete(*records)
Instance Public methods
Deletes the records supplied and removes them from the
collection. For has_many associations, the deletion is done
according to the strategy specified by the :dependent option.
Returns an array with the deleted records.
If no :dependent option is given, then it will follow the
default strategy. The default strategy is :nullify. This sets
the foreign keys to NULL. For, has_many
:through, the default strategy is delete_all.
class Person < A