mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
7 lines
217 B
PL/PgSQL
7 lines
217 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE user_links ADD COLUMN debug_context jsonb DEFAULT '{}' NOT NULL;
|
|
COMMENT ON COLUMN user_links.debug_context IS 'Debug information includes information like id_token and userinfo claims.';
|
|
|
|
COMMIT;
|