mirror of
https://github.com/harness/drone.git
synced 2025-05-09 00:22:18 +08:00
16 lines
173 B
SQL
16 lines
173 B
SQL
-- name: count-users
|
|
|
|
SELECT count(1)
|
|
FROM users
|
|
|
|
-- name: count-repos
|
|
|
|
SELECT count(1)
|
|
FROM repos
|
|
WHERE repo_active = 1
|
|
|
|
-- name: count-builds
|
|
|
|
SELECT count(1)
|
|
FROM builds
|