mirror of
https://github.com/abhinavxd/libredesk.git
synced 2026-09-22 10:33:24 +00:00
5 lines
106 B
SQL
5 lines
106 B
SQL
-- name: insert-media
|
|
INSERT INTO media
|
|
(store, filename, content_type)
|
|
VALUES($1, $2, $3)
|
|
RETURNING uuid; |