mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
5 lines
186 B
SQL
5 lines
186 B
SQL
CREATE TYPE port_share_protocol AS ENUM ('http', 'https');
|
|
|
|
ALTER TABLE workspace_agent_port_share
|
|
ADD COLUMN protocol port_share_protocol NOT NULL DEFAULT 'http'::port_share_protocol;
|