我正在尝试将我的rails app中的多个数据库连接为主要数据库,将另一个数据库连接为辅助数据库。这就是我在database.yml中的内容。
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
# development:
# adapter: postgresql
# database: martin_development
# username:
# password:
# pool: 5
# timeout: 5000
development:
adapter: sqlserver
host:
port: 1433
database:
username:
password:
由于显而易见的原因,我遗漏了一些数据,但sqlserver已连接,但我从postgresql数据库中丢失了所有数据,我也需要它,因为它为博客和作者登录等等提供了单独的数据。我该如何做到这一点?