i need to create a database table to store different change log/auditing (when something was added,deleted,modified,etc). i dont need to store particularly detailed info, so i was thinking something along the lines of:
- id (for event)
- user that triggered it
- event name
- event description
- timestamp of the event
am i missing something here? obviously i can keep improving the design, although i dont plan on making it complicated (creating other tables for event types or stuff like that is out of the question since it's a complication for my need)