aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/connections/native_postgresql/connection.rb
blob: 1bdff730b1c9b9a7e98059e5b19ddd65c1ddf061 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                 
                                    








                                                   

                           

                            



                            

                           


                            
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"
)