Files
coder/coderd/database/migrations/000113_template_disable_user_scheduling.up.sql
Dean Sheather e33941b7c2 feat: allow disabling autostart and custom autostop for template (#6933)
API only, frontend in upcoming PR.
2023-04-04 12:48:35 +00:00

10 lines
425 B
SQL

ALTER TABLE "templates"
ADD COLUMN "allow_user_autostart" boolean DEFAULT true NOT NULL,
ADD COLUMN "allow_user_autostop" boolean DEFAULT true NOT NULL;
COMMENT ON COLUMN "templates"."allow_user_autostart"
IS 'Allow users to specify an autostart schedule for workspaces (enterprise).';
COMMENT ON COLUMN "templates"."allow_user_autostop"
IS 'Allow users to specify custom autostop values for workspaces (enterprise).';