mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
9 lines
233 B
PL/PgSQL
9 lines
233 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE workspace_proxies
|
|
ADD COLUMN "derp_only" BOOLEAN NOT NULL DEFAULT false;
|
|
|
|
COMMENT ON COLUMN workspace_proxies.derp_only IS 'Disables app/terminal proxying for this proxy and only acts as a DERP relay.';
|
|
|
|
COMMIT;
|