Skip to content

Commit

Permalink
fix: add missing audit table
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaCambi77 committed Dec 19, 2023
1 parent 4458bce commit b96649e
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ update trackedentityattributevalueaudit set audittype = 'CREATE' where audittype
update trackedentityattributevalueaudit set audittype = 'UPDATE' where audittype = 'update';
update trackedentityattributevalueaudit set audittype = 'DELETE' where audittype = 'delete';
update trackedentityattributevalueaudit set audittype = 'READ' where audittype = 'read';
update trackedentityattributevalueaudit set audittype = 'SEARCH' where audittype = 'search';
update trackedentityattributevalueaudit set audittype = 'SEARCH' where audittype = 'search';

update trackedentitydatavalueaudit set audittype = 'CREATE' where audittype = 'create';
update trackedentitydatavalueaudit set audittype = 'UPDATE' where audittype = 'update';
update trackedentitydatavalueaudit set audittype = 'DELETE' where audittype = 'delete';
update trackedentitydatavalueaudit set audittype = 'READ' where audittype = 'read';
update trackedentitydatavalueaudit set audittype = 'SEARCH' where audittype = 'search';

0 comments on commit b96649e

Please sign in to comment.