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
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 models