mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-07 12:10:26 -06:00
9 lines
194 B
SQL
9 lines
194 B
SQL
-- name: LibraryById :one
|
|
SELECT * from libraries where id = $1;
|
|
|
|
-- name: CreateLibrary :exec
|
|
INSERT INTO libraries(
|
|
id, owner, display_name, storage_backend
|
|
) VALUES(
|
|
$1, $2, $3, $4
|
|
); |