10 lines
147 B
SQL
10 lines
147 B
SQL
-- name: Insert :one
|
|
INSERT INTO unpack_history (input, result)
|
|
VALUES (@input, @result)
|
|
RETURNING
|
|
id,
|
|
input,
|
|
result,
|
|
created_at
|
|
;
|