mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-19 10:31:32 -06:00
Libraries
This commit is contained in:
9
sql/queries/libraries.sql
Normal file
9
sql/queries/libraries.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
-- name: LibraryById :one
|
||||
SELECT * from libraries where id = $1;
|
||||
|
||||
-- name: CreateLibrary :exec
|
||||
INSERT INTO libraries(
|
||||
id, owner, display_name
|
||||
) VALUES(
|
||||
$1, $2, $3
|
||||
);
|
||||
Reference in New Issue
Block a user