mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
chore(codersdk): deprecate WorkspaceAppStatus.{NeedsUserAttention,Icon} (#17358)
https://github.com/coder/coder/pull/17163 introduced the `workspace_app_statuses` table. Two of these fields (`needs_user_attention`, `icon`) turned out to be surplus to requirements. - Removes columns `needs_user_attention` and `icon` from `workspace_app_statuses` - Marks the corresponding fields of `codersdk.WorkspaceAppStatus` as deprecated.
This commit is contained in:
@ -0,0 +1,3 @@
|
||||
ALTER TABLE ONLY workspace_app_statuses
|
||||
ADD COLUMN IF NOT EXISTS needs_user_attention BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
ADD COLUMN IF NOT EXISTS icon TEXT;
|
@ -0,0 +1,3 @@
|
||||
ALTER TABLE ONLY workspace_app_statuses
|
||||
DROP COLUMN IF EXISTS needs_user_attention,
|
||||
DROP COLUMN IF EXISTS icon;
|
Reference in New Issue
Block a user