Bobby Meyer
developer/designer
heroku | postgresql | rails | ruby
Reset Rails DB Environment after a Pull
March 17, 2021When you pull production data from Heroku to your local development environment, the data includes metadata for the environment from which it was pulled. This means that your local development database is tagged as a production database, and Rails will give it extra protection.
If you try to drop that database, you will get an error like:
To reset the database environment to development, and thus be allowed to drop it, you can run the following command:
🎩 HT: Zieski
back to posts