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
We need to ensure that actions triggered by the API is auditable: who did what and when. For now, we are only able to track objects creation and update date/time (the when). We at least need the who.
Proposal
add a created_by foreign key to the User table for every models
add a updated_by foreign key to the User table for every models
add schema and data migrations
The text was updated successfully, but these errors were encountered:
Purpose
We need to ensure that actions triggered by the API is auditable: who did what and when. For now, we are only able to track objects creation and update date/time (the when). We at least need the who.
Proposal
created_by
foreign key to theUser
table for every modelsupdated_by
foreign key to theUser
table for every modelsThe text was updated successfully, but these errors were encountered: