1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

PostgreSQL: min_messages = warning for AR tests.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2989 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2005-11-12 22:28:38 +00:00
parent 9e0642a4ac
commit 54dfb29151

View file

@ -9,16 +9,16 @@ db2 = 'activerecord_unittest2'
ActiveRecord::Base.establish_connection(
:adapter => "postgresql",
:host => nil,
:username => "postgres",
:password => "postgres",
:database => db1
:database => db1,
:min_messages => "warning"
)
Course.establish_connection(
:adapter => "postgresql",
:host => nil,
:username => "postgres",
:password => "postgres",
:database => db2
)
:database => db2,
:min_messages => "warning"
)