aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/connections/mysql_connection.rb
blob: 66a53b5037b17a88a54ea919fe775cd8d8220d6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
puts "Using native MySQL"
require "active_record"
require 'logger'

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

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

ActiveRecord::Base.establish_connection 'unit'