View revert_destroy_all.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Model.destroy_all | |
# if you haven't performed any other action after accidently deleting all records from Model, | |
# then _ would grab last response generated by Model.destroy_all | |
destroyed_records = _ | |
destroyed_records.each do |destroyed_record| | |
Model.create(destroyed_record.attributes) | |
end |