mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
feat: support custom order of agent metadata (#12066)
This commit is contained in:
@ -0,0 +1 @@
|
||||
ALTER TABLE workspace_agent_metadata DROP COLUMN display_order;
|
@ -0,0 +1,4 @@
|
||||
ALTER TABLE workspace_agent_metadata ADD COLUMN display_order integer NOT NULL DEFAULT 0;
|
||||
|
||||
COMMENT ON COLUMN workspace_agent_metadata.display_order
|
||||
IS 'Specifies the order in which to display agent metadata in user interfaces.';
|
Reference in New Issue
Block a user