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

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

ActiveRecord::Base.establish_connection 'unit'