Добавить новые разделы в database.yml
, например,
other_development:
adapter: mysql
database: otherdb_development
username: root
password:
host: localhost
other_production:
adapter: mysql
database: otherdb_production
username: root
password:
host: localhost
Добавить класс в lib/other_database.rb
class OtherDatabase < ActiveRecord::Base
establish_connection "other_#{RAILS_ENV}"
end
и затем для каждой модели, которая не входит в подкласс базы данных по умолчанию с OtherDatabase
например:
class MyModel < OtherDatabase
# my model code...
end