> I am wondering if anyone has any good solutions for having postgres
> leave an audit trail.
I had 2 tables that needed a simple audit trail. It was very easy to
set up using php.
A few lines of code within transactions:
When a row is created, log it.
When any changes happen, log them, who did them and why.
I never felt I needed all the info for each row - just the changes.
Jeff