Permission Group Membership Auditing

On metabase, we have this table: permissions_group_membership , wherein the data mapping for user_id<>group_id is present.

However, there is no timestamp information on when this entry was created, neither any state/ status column is present for if the user is removed from the group. (thus the entry may get deleted from the table altogether).

Is there any way that i can get this information, need it for auditing purposes.

I think you're looking for Log in `audit_log` when users are added or removed from groups · Issue #48571 · metabase/metabase · GitHub

in the meantime, create a trigger in the DB

1 Like

Thanks