mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
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.';
|