feat: add dead letter queue
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-01-19 11:33:38 +01:00
parent 1cf9d23491
commit 0b042780c3
13 changed files with 234 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
-- name: Ping :one
SELECT 1;
-- name: InsertDeadLetter :exec
INSERT INTO dead_letter
(
schedule_id
)
VALUES
(
$1
);