instiki/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb

22 lines
519 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
print "Using native PostgreSQL\n"
require_dependency 'models/course'
2007-01-22 14:43:50 +01:00
require 'logger'
ActiveRecord::Base.logger = Logger.new("debug.log")
ActiveRecord::Base.configurations = {
'arunit' => {
:adapter => 'postgresql',
:database => 'activerecord_unittest',
:min_messages => 'warning'
},
'arunit2' => {
:adapter => 'postgresql',
:database => 'activerecord_unittest2',
:min_messages => 'warning'
}
}
2007-01-22 14:43:50 +01:00
ActiveRecord::Base.establish_connection 'arunit'
Course.establish_connection 'arunit2'