简体   繁体   中英

How to manage schema in a different database from within a rails app

I have a simple Rails app which populates into a certain database and there are few migration scripts. I would like to create a different set of model classes and actually migrate the schema pertaining to those files into a different database. How should we do that? Will I be able to do this from the same rails app?

Well, change the database name in database.yml , then follow the usual steps, bundle exec rake db:setup should do the work.

Or you could create a seperate database_2.yml and then make a database.rake file and follow the steps here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM