We've been working hard to modernize our home-grown in-house application, using PostgreSQL instead of MySQL. We've generally tried to only change architectural things that truly needed to change. One of the things we've left alone is our database versioning technique.
Rolling code out to production is pretty simple: run a backup, svn up, some rsync magic, then call the database update script. (This is all automated.) In the land of MySQL, we log in as a user with the SUPER priv so that we can perform whatever maintenance tasks are needed, from DDL to one-time database manipulation.
Well, we finally got to roll out our new application for the first time this past week. We'd followed the same pattern as we had in the past. Each person that can perform a rollout is a PG superuser, but the application runs as a user with less obscene permissions.
You probably already know what's coming here.
Everything created by the superuser that ran the database maintenance script was created with that user's identity, and the normal application user couldn't even see the schema and tables. We're using 8.4 right now, and in a complete brainfart, I had forgotten that there's no way in 8.4 to define default grants (and ownership?) for new objects.
Now, this has been covered here before. Lots of times, in fact. This question from a while ago details both the commands needed to add appropriate grants, and was recently updated with information on 9.0's new default permission goodies. As a short-term solution, we altered our database versioning script to simply force ownership back to the normal application user on every table once it's done running. Depesz's blog post from 2007 was a great help.
I'm not satisfied with this solution. Automatically resetting ownership just to avoid having to run a grant every single time we create a table feels hackish.
Beyond 9.0's new features for setting default grants, is there anything I'm missing here that could be of help make rollout grants not suck? (Upgrading isn't an issue, we just haven't done so yet. Our sysadmin really prefers using vendor-provided packages, and we're a RHEL shop.)
Our goal is to have the normal application user be unable to perform DDL operations, just in case the worst happens. We'd also prefer not to share the same (superuser) account among all the people that are able to perform rollouts. It seems to me that maybe there might be some magic with roles that could be helpful, as this blog post about replicating MSSQL's dbo role suggests, but that also seems like an enormous hack.
How do you handle roles/grants in your database versioning scheme?