Files
coder/coderd/database/migrations/000139_template_restart_requirement.up.sql

36 lines
1.6 KiB
PL/PgSQL

BEGIN;
ALTER TABLE templates
-- The max_ttl column will be dropped eventually when the new "restart
-- requirement" feature flag is fully rolled out.
-- DROP COLUMN max_ttl,
ADD COLUMN restart_requirement_days_of_week smallint NOT NULL DEFAULT 0,
ADD COLUMN restart_requirement_weeks bigint NOT NULL DEFAULT 0;
COMMENT ON COLUMN templates.restart_requirement_days_of_week IS 'A bitmap of days of week to restart the workspace on, starting with Monday as the 0th bit, and Sunday as the 6th bit. The 7th bit is unused.';
COMMENT ON COLUMN templates.restart_requirement_weeks IS 'The number of weeks between restarts. 0 or 1 weeks means "every week", 2 week means "every second week", etc. Weeks are counted from January 2, 2023, which is the first Monday of 2023. This is to ensure workspaces are started consistently for all customers on the same n-week cycles.';
ALTER TABLE users
ADD COLUMN quiet_hours_schedule text NOT NULL DEFAULT '';
COMMENT ON COLUMN users.quiet_hours_schedule IS 'Daily (!) cron schedule (with optional CRON_TZ) signifying the start of the user''s quiet hours. If empty, the default quiet hours on the instance is used instead.';
-- Update the template_with_users view by recreating it.
DROP VIEW template_with_users;
CREATE VIEW
template_with_users
AS
SELECT
templates.*,
coalesce(visible_users.avatar_url, '') AS created_by_avatar_url,
coalesce(visible_users.username, '') AS created_by_username
FROM
templates
LEFT JOIN
visible_users
ON
templates.created_by = visible_users.id;
COMMENT ON VIEW template_with_users IS 'Joins in the username + avatar url of the created by user.';
COMMIT;