mirror of
https://github.com/coder/coder.git
synced 2026-06-05 22:18:20 +00:00
feat: provide endpoint to lock/unlock workspace (#8239)
This commit is contained in:
Generated
+2
-1
@@ -816,7 +816,8 @@ CREATE TABLE workspaces (
|
||||
name character varying(64) NOT NULL,
|
||||
autostart_schedule text,
|
||||
ttl bigint,
|
||||
last_used_at timestamp without time zone DEFAULT '0001-01-01 00:00:00'::timestamp without time zone NOT NULL
|
||||
last_used_at timestamp without time zone DEFAULT '0001-01-01 00:00:00'::timestamp without time zone NOT NULL,
|
||||
locked_at timestamp with time zone
|
||||
);
|
||||
|
||||
ALTER TABLE ONLY licenses ALTER COLUMN id SET DEFAULT nextval('licenses_id_seq'::regclass);
|
||||
|
||||
Reference in New Issue
Block a user