I am at a point where I have multiple production heroku apps and several more in development.
For the apps in active development, i often run commands like heroku run rake db:setup, rake db:seed to reset data while I am still doing early development.
There is a risk that I could accidentally run these commands while in a heroku command prompt for a production app which would be bad.
In short, is it possible to disable certain rake tasks(db:reset, db:setup, db:seed) for heroku apps rails.