mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
* feat: add columns autostart_schedule, autostop_schedule to database schema * feat: database: add UpdateWorkspaceAutostart and UpdateWorkspaceAutostop methods * feat: add AutostartSchedule/AutostopSchedule to api workspace struct * feat: codersdk: implement update workspace autostart and autostop methods * chore: add unit tests for workspace autostarat and autostop methods
4 lines
161 B
SQL
4 lines
161 B
SQL
ALTER TABLE ONLY workspaces
|
|
ADD COLUMN IF NOT EXISTS autostart_schedule text DEFAULT NULL,
|
|
ADD COLUMN IF NOT EXISTS autostop_schedule text DEFAULT NULL;
|