We are using rails app and have lot of data in live tables. So we are starting to archive the data into different database and have minimal required data in live tables. But only issue I am facing is how to handle schema changes. Is there any way to run migrations on both live db and archival db on rake db:migrate?
Any suggestion on how to handle this kind of situation, where its necessary to keep schema of both db in sync.
Thanks, GG