10 lines
136 B
SQL
10 lines
136 B
SQL
-- name: Latest :many
|
|
SELECT id,
|
|
input,
|
|
result,
|
|
created_at
|
|
FROM unpack_history
|
|
ORDER BY created_at DESC
|
|
LIMIT 15
|
|
;
|