mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
* chore: rename startup logs to agent logs This also adds a `source` property to every agent log. It should allow us to group logs and display them nicer in the UI as they stream in. * Fix migration order * Fix naming * Rename the frontend * Fix tests * Fix down migration * Match enums for workspace agent logs * Fix inserting log source * Fix migration order * Fix logs tests * Fix psql insert
9 lines
444 B
PL/PgSQL
9 lines
444 B
PL/PgSQL
BEGIN;
|
|
ALTER TABLE workspace_agent_logs RENAME TO workspace_agent_startup_logs;
|
|
ALTER TABLE workspace_agent_startup_logs DROP COLUMN source;
|
|
DROP TYPE workspace_agent_log_source;
|
|
ALTER TABLE workspace_agents RENAME COLUMN logs_overflowed TO startup_logs_overflowed;
|
|
ALTER TABLE workspace_agents RENAME COLUMN logs_length TO startup_logs_length;
|
|
ALTER TABLE workspace_agents RENAME CONSTRAINT max_logs_length TO max_startup_logs_length;
|
|
COMMIT;
|