-- name: GetDocument :one SELECT id, jobId, hash, location FROM documents WHERE id = $1 LIMIT 1; -- name: CreateDocument :one INSERT INTO documents (jobId, hash, location) VALUES ($1, $2, $3) RETURNING id;