mirror of
https://github.com/coder/coder.git
synced 2026-06-03 04:58:23 +00:00
5c8cac9fb7
In the presence of multiple devcontainers, it would be nice to differentiate them by name. This change inherits the resource name from terraform. Refs #17076
5 lines
249 B
SQL
5 lines
249 B
SQL
ALTER TABLE workspace_agent_devcontainers ADD COLUMN name TEXT NOT NULL DEFAULT '';
|
|
ALTER TABLE workspace_agent_devcontainers ALTER COLUMN name DROP DEFAULT;
|
|
|
|
COMMENT ON COLUMN workspace_agent_devcontainers.name IS 'The name of the Dev Container.';
|