We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02b9332 commit 54fb490Copy full SHA for 54fb490
common/src/database/schema/audit.rs
@@ -92,7 +92,7 @@ pysql_select_page!(select_audit_version_page_by_resource_type_and_resource_id(re
92
`audit_version.*, oidc_user.id AS oidc_user_id, oidc_user.username AS oidc_user_username from audit_version JOIN oidc_user ON oidc_user.id = made_by `
93
`WHERE resource_type = #{resource_type} AND resource_id = #{resource_id} `
94
if do_count == false:
95
- `ORDER BY version DESC`");
+ `order by version DESC`");
96
97
impl From<&AuditResource> for ProtoResourceKind {
98
fn from(value: &AuditResource) -> Self {
0 commit comments