mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08: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;
|