多个数据库连接:在错误的数据库中查找 schema_migrations [英] Multiple database connections: schema_migrations is looked up in the wrong database

查看:9
本文介绍了多个数据库连接:在错误的数据库中查找 schema_migrations的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I am trying to use a secondary database connection for some of my migrations in the following way:

# app/models/staging/migration.rb
class Staging::Migration < ActiveRecord::Migration
    def self.connection
        ActiveRecord::Base.establish_connection(:staging_db).connection
    end
end

# db/migrate/<timestamp>_create_foo.rb
class CreateFoo < Staging::Migration
    ....
end

In my database.yml the staging_db connection is configured.

When I run rake db:migrate, the table foo is created correctly in the staging_db schema, and the table schema_migrations is created in the RAILS_ENV=development connection. However db:migrate reports the following error (which fails subsequent migrations):

Table 'staging_db.schema_migrations' doesn't exist

Is there a way to tell Staging::Migration to look for the schema_migrations table in the current RAILS_ENV connection?

BTW, I am aware of the fact that staging_db is then not RAILS_ENV-aware. This is fine for me since every server has its environment configured through a separate database.yml which is not in my repo.

解决方案

You should try do this before your first migration in the staging_db:

ActiveRecord::Base.connection.initialize_schema_migrations_table

This will create a schema migration table in the staging db. If this is not what you want you will have to manipulate some other things. The schema_migrations_table_name determines which table contains the migration versions:

def schema_migrations_table_name
  Base.table_name_prefix + 'schema_migrations' + Base.table_name_suffix
end

So if you have a table_name_prefix defined it will cause the schema_migration_table to look in the staging db.

这篇关于多个数据库连接:在错误的数据库中查找 schema_migrations的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆