Database design - how do I track information over time and query a table for latest data?

前端 未结 5 1372
名媛妹妹
名媛妹妹 2021-01-15 16:01

We are trying to track our applications in our department and our unit test usage so I have created a database to keep track of this. I have an Applications

5条回答
  •  礼貌的吻别
    2021-01-15 16:42

    You can use auditing. This will create the logs you want.

    To separate between different applications and unit tests you can create separate users for each application. It will simplify querying who tested what.

提交回复
热议问题