Importing database dump in Ruby on Rails
Sometimes, we need to load the data from sandbox environments, production environments into our local application.
We generally get a dump.tar.gz or zipped file, let’s see how we can import the data.
1. Unzip the data.
2. Drop the database that you have in…