使用 rake 任务重置数据库
Reset database with rake task
我想使用 Heroku 的 scheduler 每天重置我的数据库一次。
推荐调度器使用rake任务。这是我试过的:
task :reset_database => :environment do
`heroku pg:reset MY_DB:URL`
`heroku run rake db:migrate db:seed`
# some other ruby commands
end
但是我该如何正确地执行此操作,因为将 heroku 命令放在反引号中,而 bash normally works 在这里不起作用:
No such file or directory - heroku
试试这个佣金任务:
namespace :reset_database do
desc "Destroy all table entries."
task :all => :environment do
ActiveRecord::Base.connection.tables.each do |table|
if table != 'schema_migrations'
table.singularize.camelize.constantize.destroy_all
end
# Use this if you want to use the normal seeds:
# Rails.application.load_seed
# Use this if you want to run another rake task:
Rake::Task["foo:bar"].invoke
end
end
end
我想使用 Heroku 的 scheduler 每天重置我的数据库一次。
推荐调度器使用rake任务。这是我试过的:
task :reset_database => :environment do
`heroku pg:reset MY_DB:URL`
`heroku run rake db:migrate db:seed`
# some other ruby commands
end
但是我该如何正确地执行此操作,因为将 heroku 命令放在反引号中,而 bash normally works 在这里不起作用:
No such file or directory - heroku
试试这个佣金任务:
namespace :reset_database do
desc "Destroy all table entries."
task :all => :environment do
ActiveRecord::Base.connection.tables.each do |table|
if table != 'schema_migrations'
table.singularize.camelize.constantize.destroy_all
end
# Use this if you want to use the normal seeds:
# Rails.application.load_seed
# Use this if you want to run another rake task:
Rake::Task["foo:bar"].invoke
end
end
end