mirror of
https://github.com/github/rails.git
synced 2026-02-03 10:45:01 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3182 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
25 lines
545 B
Ruby
25 lines
545 B
Ruby
print "Using native PostgreSQL\n"
|
|
require_dependency 'fixtures/course'
|
|
require 'logger'
|
|
|
|
ActiveRecord::Base.logger = Logger.new("debug.log")
|
|
|
|
db1 = 'activerecord_unittest'
|
|
db2 = 'activerecord_unittest2'
|
|
|
|
ActiveRecord::Base.establish_connection(
|
|
:adapter => "postgresql",
|
|
:username => "postgres",
|
|
:password => "postgres",
|
|
:database => db1,
|
|
:min_messages => "warning"
|
|
)
|
|
|
|
Course.establish_connection(
|
|
:adapter => "postgresql",
|
|
:username => "postgres",
|
|
:password => "postgres",
|
|
:database => db2,
|
|
:min_messages => "warning"
|
|
)
|