Last active
December 6, 2024 21:58
-
-
Save 8parth/cb2a55c4f6a8b89b2afff6633e50a6c4 to your computer and use it in GitHub Desktop.
revert back accidently deleted Model.destroy_all in rails console
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wow. This was a lifesaver