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

ENV['ADAPTER'] = 'mysql'

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