mirror of
https://github.com/coder/coder.git
synced 2026-06-04 05:28:20 +00:00
abb2c7656a
* chore: add claims to oauth link in db for debug
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;
|