I have a rails app that I use to connect to a production slave database hosted on amazon. I want to create a second database, that has an entirely different schema and just keep it on my local machine. The reason is to import data from a third party we use and better organize and be able to access it faster than hitting their api. My question is how would I go about setting this second database up? Would it be better just to create a new rails application all together? If I set up a new environment and a new database in my database.yml, how would I create a custom schema etc. for that database?
Thanks!