LoginSignup
8
7

More than 5 years have passed since last update.

本番環境で db:reset してしまう悪い夢を見たので

Posted at

運用始まったら Rakefile に書き足しておくといいと思った。

Rakefile
namespace :db do
  task :drop => :abort_on_production
end
task :abort_on_production do
  abort "Don't drop production database. aborted. " if Rails.env.production?
end
8
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
7