Hi
When a new entity is created the created_by, create_ts and update_ts fields are included in the db for the newly created item. Is there a way to also include the updated_by?
Having the updated_by field also included when an item is created means that we only need to display updated_ts and updated_by fields in gui tables (to show the audit trails). Without the updated_by included it means that we have to include 4 columns in tables (created_ts, created_by, updated_ts & updated_by) for the audit trail which is unnecessary when all the user really wants to know is who last updated the entity regardless of if it was a created or updated item.
Thanks