aboutsummaryrefslogtreecommitdiffstats
path: root/spec/connections/postgresql_connection.rb
blob: e376d33ec647decc2b7647b6b4e991cd03faa576 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "activerecord"
puts "Using native PostgreSQL"

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

ActiveRecord::Base.configurations = {
  'unit' => {
    :adapter  => 'postgresql',
    :encoding => 'utf8',
    :database => 'arel_unit',
  }
}

ActiveRecord::Base.establish_connection 'unit'