Files
pgbackweb/internal/service/executions/list_backup_executions.sql
2024-07-21 17:28:29 -06:00

5 lines
133 B
SQL

-- name: ExecutionsServiceListBackupExecutions :many
SELECT * FROM executions
WHERE backup_id = @backup_id
ORDER BY started_at DESC;