mirror of
https://github.com/run-llama/study-llama.git
synced 2026-07-01 20:54:01 -04:00
7 lines
120 B
SQL
7 lines
120 B
SQL
-- name: CreateFile :one
|
|
INSERT INTO files (
|
|
username, file_name, file_category
|
|
) VALUES (
|
|
$1, $2, $3
|
|
)
|
|
RETURNING *; |