My ultimate goal is to minimize (or eliminate, if possible) the possibility that my database records are updated or deleted/destroyed in any way after being created.
One suggestion I received is to create a new PostgreSQL database user with restricted privileges (no updating, no destroying) and make that user the default for development.
In Nitrous.io/Heroku, how do I create a new PostgreSQL user, restrict user permissions/privileges and switch to that user for development and production?
If you know a better way to eliminate the possibility for record alteration, please let me know.
Thanks