PostgreSQL: db:test:purge closes open database connections first. Closes #6236.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5269 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2006-10-09 06:34:57 +00:00
parent eaae0399ad
commit 419226fe11
2 changed files with 4 additions and 0 deletions

@ -1,5 +1,7 @@
*SVN*
* PostgreSQL: db:test:purge closes open database connections first. #6236 [alex]
* Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
* Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [BobSilva]

@ -123,6 +123,8 @@ namespace :db do
ENV['PGPORT'] = abcs["test"]["port"].to_s if abcs["test"]["port"]
ENV['PGPASSWORD'] = abcs["test"]["password"].to_s if abcs["test"]["password"]
enc_option = "-E #{abcs["test"]["encoding"]}" if abcs["test"]["encoding"]
ActiveRecord::Base.clear_active_connections!
`dropdb -U "#{abcs["test"]["username"]}" #{abcs["test"]["database"]}`
`createdb #{enc_option} -U "#{abcs["test"]["username"]}" #{abcs["test"]["database"]}`
when "sqlite","sqlite3"