Skip to content

Commit

Permalink
Merge 23.3 to develop
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-teamcity committed Jun 30, 2023
2 parents da7dea5 + b9a68ad commit 098f068
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions resources/queries/snd/DeletedLookupSets.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
select
substring(qae.oldrecordmap, charindex('objectid=',qae.oldrecordmap, 0) + len('objectid='), 36) as objectid,
qae.date as modified

from auditLog.QueryUpdateAuditEvent as qae

WHERE qae.comment = 'A row was deleted.'
and qae.QueryName = 'LookupSets'
and qae.SchemaName = 'snd'
9 changes: 9 additions & 0 deletions resources/queries/snd/DeletedLookups.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
select
substring(qae.oldrecordmap, charindex('objectid=',qae.oldrecordmap, 0) + len('objectid='), 36) as objectid,
qae.date as modified

from auditLog.QueryUpdateAuditEvent as qae

WHERE qae.comment = 'A row was deleted.'
and qae.QueryName = 'Lookups'
and qae.SchemaName = 'snd'
1 change: 1 addition & 0 deletions resources/schemas/snd.xml
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@
</columns>
</table>
<table tableName="LookupSets" tableDbType="TABLE">
<auditLogging>DETAILED</auditLogging>
<columns>
<column columnName="LookupSetId"/>
<column columnName="SetName"/>
Expand Down

0 comments on commit 098f068

Please sign in to comment.