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:
parent
9e0642a4ac
commit
54dfb29151
1 changed files with 5 additions and 5 deletions
|
@ -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"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue