This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :db do | |
# Prevent dropping Production DB | |
# ... or terminate postgres connections before attempting to drop in non production environment | |
task :drop => [:abort_in_production, :terminate_pg] | |
task :abort_in_production => :environment do | |
abort "Can't drop #{Rails.env} DB!" if Rails.env.production? | |
end |
OlderNewer