Hey, did you know that there's an option called --sandbox that you can append to console?
Yuuuup, you can run rails console --sandbox when you load up your console. What's it for? Simple -- to ensure that any changes you make to the database are rolled back on exit.
Why use this?
Well, what if you're going into your production box and need to poke around with the data. The site's live, y'know. It's great to be able to go into a production box, run rails c and not have to worry that you may have accidentally deleted an entry or updated a value. Think of it as an extra safety net. Here's what it'd look like.
Once in, you can do the usual CRUD actions, even run .save!, and not have to worry about how the actual production database is affected. Here's proof.
BOOM. Sweet sweet success. No prod box will scare you from now on.