mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
46a2ff1061
Co-authored-by: Garrett Delfosse <garrett@coder.com>
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;
|