Mute psql output when running rake db:schema:load
This commit is contained in:
parent
ebd7cc6f45
commit
2496bd9a98
@ -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.
|
||||
|
@ -59,7 +59,7 @@ def structure_dump(filename)
|
||||
|
||||
def structure_load(filename)
|
||||
set_psql_env
|
||||
Kernel.system("psql -f #{filename} #{configuration['database']}")
|
||||
Kernel.system("psql -q -f #{filename} #{configuration['database']}")
|
||||
end
|
||||
|
||||
private
|
||||
|
@ -227,7 +227,7 @@ def setup
|
||||
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user