Hello everybody,
I am designing a database schema, and I was wondering about adding a couple of primitive audit fields to each table.
These ones are:
- ADDED_BY
- DATE_ADDED
- MODIFIED_BY
- DATE_MODIFIED
I feel that these one can be useful in some cases for simple checkups, but I think that will overload (a bit) my model. Another fact is that with these column, we can't know who modified and when between the added and last modification.
Any advice, experience or recommendation about this approach?
Thanks
Bruno