We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12c6f8d commit 224fa2fCopy full SHA for 224fa2f
coderd/database/migrations/000118_workspace_proxy_token.up.sql
@@ -10,4 +10,13 @@ DELETE FROM workspace_proxies;
10
ALTER TABLE workspace_proxies
11
ADD COLUMN token_hashed_secret bytea NOT NULL;
12
13
+COMMENT ON COLUMN workspace_proxies.token_hashed_secret
14
+ IS 'Hashed secret is used to authenticate the workspace proxy using a session token.';
15
+
16
+COMMENT ON COLUMN workspace_proxies.deleted
17
+ IS 'Boolean indicator of a deleted workspace proxy. Proxies are soft-deleted.';
18
19
+COMMENT ON COLUMN workspace_proxies.icon
20
+ IS 'Expects an emoji character. (/emojis/1f1fa-1f1f8.png)';
21
22
COMMIT;
0 commit comments