You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It may be worth adding a last_edited timestamp field, and a last_edited_by foreign key > User.id field. This enables slightly better audit trail. Cf. all related transactions will be stored in the transaction log.
The text was updated successfully, but these errors were encountered:
However, deleting a group causes the group to be removed from users. I think maybe a better way handle deletion is to maybe add an is_deleted bool field, or to simply strip all permissions from a group on-delete. Or, both. Then, if a user is a member of a group that is deleted, it will show up on their profile, but we can add a (deleted) designation to show the group is inactive.
It may be worth adding a last_edited timestamp field, and a last_edited_by foreign key > User.id field. This enables slightly better audit trail. Cf. all related transactions will be stored in the transaction log.
The text was updated successfully, but these errors were encountered: