chore: update readme/sql

Signed-off-by: izzy <me@insrt.uk>
This commit is contained in:
izzy
2026-02-11 16:19:13 +00:00
parent a1812e98d0
commit 477d43290b
2 changed files with 5 additions and 13 deletions

View File

@@ -10,20 +10,12 @@ where
-- IntegrityRepository.getIntegrityReportSummary
select
count(*) filter (
where
"type" = $1
) as "checksum_mismatch",
count(*) filter (
where
"type" = $2
) as "missing_file",
count(*) filter (
where
"type" = $3
) as "untracked_file"
"type",
count(*) as "count"
from
"integrity_report"
group by
"type"
-- IntegrityRepository.getIntegrityReports
select