Mute psql output when running rake db:schema:load

This commit is contained in:
Godfrey Chan 2013-04-30 17:24:29 -07:00
parent ebd7cc6f45
commit 2496bd9a98
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
* Mute `psql` output when running rake db:schema:load.
*Godfrey Chan*
* Trigger a save on `has_one association=(associate)` when the associate contents have changed.
Fix #8856.

View File

@ -59,7 +59,7 @@ module ActiveRecord
def structure_load(filename)
set_psql_env
Kernel.system("psql -f #{filename} #{configuration['database']}")
Kernel.system("psql -q -f #{filename} #{configuration['database']}")
end
private

View File

@ -227,7 +227,7 @@ module ActiveRecord
def test_structure_load
filename = "awesome-file.sql"
Kernel.expects(:system).with("psql -f #{filename} my-app-db")
Kernel.expects(:system).with("psql -q -f #{filename} my-app-db")
ActiveRecord::Tasks::DatabaseTasks.structure_load(@configuration, filename)
end