Files
query-orchestration/database/queries/document.sql
T

5 lines
206 B
SQL
Raw Normal View History

2025-01-23 14:56:20 +00:00
-- name: GetDocument :one
SELECT id, jobId, hash, location FROM documents WHERE id = $1 LIMIT 1;
2025-01-23 14:56:20 +00:00
-- name: CreateDocument :one
INSERT INTO documents (jobId, hash, location) VALUES ($1, $2, $3) RETURNING id;