mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
feat: add tags to provisioner keys api (#13989)
This commit is contained in:
@@ -1,14 +1,15 @@
|
||||
-- name: InsertProvisionerKey :one
|
||||
INSERT INTO
|
||||
provisioner_keys (
|
||||
id,
|
||||
provisioner_keys (
|
||||
id,
|
||||
created_at,
|
||||
organization_id,
|
||||
name,
|
||||
hashed_secret
|
||||
)
|
||||
name,
|
||||
hashed_secret,
|
||||
tags
|
||||
)
|
||||
VALUES
|
||||
($1, $2, $3, lower(@name), $4) RETURNING *;
|
||||
($1, $2, $3, lower(@name), $4, $5) RETURNING *;
|
||||
|
||||
-- name: GetProvisionerKeyByID :one
|
||||
SELECT
|
||||
|
||||
Reference in New Issue
Block a user