4

经过一些研究,Rails 似乎对多个数据库连接有明确、优雅的支持:http ://www.rubynaut.net/articles/2008/05/31/how-to-access-multiple-database-in- rails.html

但是,rails 似乎不支持在迁移中支持这一点:http ://www.jamesinman.co.uk/2011/10/serving-one-rails-application-with-multiple-databases/

因此,一些项目已经出现来填补空白。示例: http: //kovyrin.github.com/db-charmer/

我在这里错过了什么吗?奇怪的是,连接到多个数据库既简单又优雅,但迁移它们需要黑客攻击。

4

1 回答 1

1

啊,其实很简单:-D

在 Rails 3 中:

class CreateAPIRequestLogs < ActiveRecord::Migration
  def connection
    SpecialClassWithAlternativeDB.connection
  end

  def change
    # ... your migration code ...
  end
end

但是,回滚似乎无法正常工作。

此外,模式版本仍保留在主数据库中。

于 2012-04-23T21:07:45.603 回答