feat: string-unpack api

This commit is contained in:
2024-05-08 21:25:02 +03:00
parent 0f8d6b39fb
commit 070934d66a
18 changed files with 572 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
-- name: Insert :one
INSERT INTO unpack_history (input, result)
VALUES (@input, @result)
RETURNING
id,
input,
result,
created_at
;