It has been noticed that logging of User activity is not setting a unique uuid. This was a mistake and needs corrected. Just a case of adding unique=True to the model and checking existing logs to ensure there is uniqueness. If there are any duplicates, then it becomes a bit more complex, we need to maybe redo the migrations.
Describe the bug
It has been noticed that logging of User activity is not setting a unique
uuid
. This was a mistake and needs corrected. Just a case of addingunique=True
to the model and checking existing logs to ensure there is uniqueness. If there are any duplicates, then it becomes a bit more complex, we need to maybe redo the migrations.