mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-26 14:39:24 -06:00
5 lines
133 B
SQL
5 lines
133 B
SQL
-- name: ExecutionsServiceListBackupExecutions :many
|
|
SELECT * FROM executions
|
|
WHERE backup_id = @backup_id
|
|
ORDER BY started_at DESC;
|