Get DB size from Postgres

This commit is contained in:
Joakim Hellsén 2024-02-17 04:25:39 +01:00
commit 7b056a4a41
5 changed files with 46 additions and 44 deletions

2
sql/queries/stats.sql Normal file
View file

@ -0,0 +1,2 @@
-- name: DBSize :one
SELECT pg_size_pretty(pg_database_size(current_database()));