-
-
Save heo001997/8fe14d40eecce1d8af4824fbfc047ef2 to your computer and use it in GitHub Desktop.
revert back accidently deleted Model.destroy_all in rails console
This file contains hidden or 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment