How can you suppress the output of db:load:schema? Running
bundle exec rake db:schema:load
with the -s
, -q
, or even VERBOSE=false
options makes no difference in the output; the same "create_table... add_index..." garbage that I don't want to see appears. I'm invoking this from inside a custom Rake task and I don't want the user to see all of this every time.
UPDATE:
I solved the problem with some guidance from @Deefour by using:
system "bundle exec rake db:schema:load -s RAILS_ENV=#{Rails.env} >NUL"
>NUL
is for Windows machines, Unix-based can use > /dev/null
.
rather than
Rake::Task['db:schema:load'].invoke
as I had been doing in my custom task. Note that this solution is specific to Windows machines. For Unix-based machines I imagine you should be able to use the accepted solution below.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…