mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
* Add basic migrations * Improve schema * Refactor agent scripts into it's own package * Support legacy start and stop script format * Pipe the scripts! * Finish the piping * Fix context usage * It works! * Fix sql query * Fix SQL query * Rename `LogSourceID` -> `SourceID` * Fix the FE * fmt * Rename migrations * Fix log tests * Fix lint err * Fix gen * Fix story type * Rename source to script * Fix schema jank * Uncomment test * Rename proto to TimeoutSeconds * Fix comments * Fix comments * Fix legacy endpoint without specified log_source * Fix non-blocking by default in agent * Fix resources tests * Fix dbfake * Fix resources * Fix linting I think * Add fixtures * fmt * Fix startup script behavior * Fix comments * Fix context * Fix cancel * Fix SQL tests * Fix e2e tests * Interrupt on Windows * Fix agent leaking script process * Fix migrations * Fix stories * Fix duplicate logs appearing * Gen * Fix log location * Fix tests * Fix tests * Fix log output * Show display name in output * Fix print * Return timeout on start context * Gen * Fix fixture * Fix the agent status * Fix startup timeout msg * Fix command using shared context * Fix timeout draining * Change signal type * Add deterministic colors to startup script logs --------- Co-authored-by: Muhammad Atif Ali <atif@coder.com>
37 lines
1.3 KiB
PL/PgSQL
37 lines
1.3 KiB
PL/PgSQL
BEGIN;
|
|
CREATE TABLE workspace_agent_log_sources (
|
|
workspace_agent_id uuid NOT NULL REFERENCES workspace_agents(id) ON DELETE CASCADE,
|
|
id uuid NOT NULL,
|
|
created_at timestamptz NOT NULL,
|
|
display_name varchar(127) NOT NULL,
|
|
icon text NOT NULL,
|
|
PRIMARY KEY (workspace_agent_id, id)
|
|
);
|
|
|
|
CREATE TABLE workspace_agent_scripts (
|
|
workspace_agent_id uuid NOT NULL REFERENCES workspace_agents(id) ON DELETE CASCADE,
|
|
log_source_id uuid NOT NULL,
|
|
log_path text NOT NULL,
|
|
created_at timestamptz NOT NULL,
|
|
script text NOT NULL,
|
|
cron text NOT NULL,
|
|
start_blocks_login boolean NOT NULL,
|
|
run_on_start boolean NOT NULL,
|
|
run_on_stop boolean NOT NULL,
|
|
timeout_seconds integer NOT NULL
|
|
);
|
|
|
|
ALTER TABLE workspace_agent_logs ADD COLUMN log_source_id uuid NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'::uuid;
|
|
ALTER TABLE workspace_agent_logs DROP COLUMN source;
|
|
DROP TYPE workspace_agent_log_source;
|
|
|
|
ALTER TABLE workspace_agents DROP COLUMN startup_script_timeout_seconds;
|
|
ALTER TABLE workspace_agents DROP COLUMN shutdown_script;
|
|
ALTER TABLE workspace_agents DROP COLUMN shutdown_script_timeout_seconds;
|
|
ALTER TABLE workspace_agents DROP COLUMN startup_script_behavior;
|
|
ALTER TABLE workspace_agents DROP COLUMN startup_script;
|
|
|
|
-- Set the table to unlogged to speed up the inserts
|
|
ALTER TABLE workspace_agent_logs SET UNLOGGED;
|
|
COMMIT;
|