aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections/native_postgresql/connection.rb
blob: c9b00447f9cfde1e98fb1e7f59204ba9c25413d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
print "Using native PostgreSQL\n"
require 'fixtures/course'
require 'logger'

ActiveRecord::Base.logger = Logger.new("debug.log")

db1 = 'activerecord_unittest'
db2 = 'activerecord_unittest2'

ActiveRecord::Base.establish_connection(
  :adapter  => "postgresql",
  :host     => nil, 
  :username => "postgres",
  :password => "postgres", 
  :database => db1
)

Course.establish_connection(
  :adapter  => "postgresql",
  :host     => nil, 
  :username => "postgres",
  :password => "postgres", 
  :database => db2
)