mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-18 08:26:45 +02:00
5fe712cca6
* Refactor: move store/ to server/store/ * fix pipeline for moved tests Co-authored-by: 6543 <6543@obermui.de>
16 lines
176 B
SQL
16 lines
176 B
SQL
-- name: count-users
|
|
|
|
SELECT count(1)
|
|
FROM users
|
|
|
|
-- name: count-repos
|
|
|
|
SELECT count(1)
|
|
FROM repos
|
|
WHERE repo_active = true
|
|
|
|
-- name: count-builds
|
|
|
|
SELECT count(1)
|
|
FROM builds
|