mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
feat: Add the option to generate a trial license during setup (#5110)
This allows users to generate a 30 day free license during setup to test out Enterprise features.
This commit is contained in:
@@ -3,10 +3,11 @@ INSERT INTO
|
||||
licenses (
|
||||
uploaded_at,
|
||||
jwt,
|
||||
exp
|
||||
exp,
|
||||
uuid
|
||||
)
|
||||
VALUES
|
||||
($1, $2, $3) RETURNING *;
|
||||
($1, $2, $3, $4) RETURNING *;
|
||||
|
||||
-- name: GetLicenses :many
|
||||
SELECT *
|
||||
|
||||
Reference in New Issue
Block a user