mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
25 lines
671 B
Ruby
25 lines
671 B
Ruby
print "Using native Mysql2\n"
|
|
require_dependency 'models/course'
|
|
require 'logger'
|
|
|
|
ActiveRecord::Base.logger = Logger.new("debug.log")
|
|
|
|
# GRANT ALL PRIVILEGES ON activerecord_unittest.* to 'rails'@'localhost';
|
|
# GRANT ALL PRIVILEGES ON activerecord_unittest2.* to 'rails'@'localhost';
|
|
|
|
ActiveRecord::Base.configurations = {
|
|
'arunit' => {
|
|
:adapter => 'mysql2',
|
|
:username => 'rails',
|
|
:encoding => 'utf8',
|
|
:database => 'activerecord_unittest',
|
|
},
|
|
'arunit2' => {
|
|
:adapter => 'mysql2',
|
|
:username => 'rails',
|
|
:database => 'activerecord_unittest2'
|
|
}
|
|
}
|
|
|
|
ActiveRecord::Base.establish_connection 'arunit'
|
|
Course.establish_connection 'arunit2'
|