mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
21 lines
253 B
SQL
21 lines
253 B
SQL
-- name: ListApiKeys :many
|
|
select
|
|
*
|
|
from
|
|
apikeys
|
|
order by
|
|
last_used;
|
|
|
|
-- name: CreateApiKey :one
|
|
insert into apikeys(name, token, claims)
|
|
values ($1, $2, $3)
|
|
returning
|
|
*;
|
|
|
|
-- name: DeleteApiKey :one
|
|
delete from apikeys
|
|
where id = $1
|
|
returning
|
|
*;
|
|
|