JDBC device_code authorization

Issue gh-1156
This commit is contained in:
Xu Xiaowei
2023-04-02 01:26:37 +08:00
committed by Steve Riesenberg
parent 8e04da773d
commit cf7ecc161d
5 changed files with 156 additions and 13 deletions

View File

@@ -29,5 +29,13 @@ CREATE TABLE oauth2_authorization (
refresh_token_issued_at timestamp DEFAULT NULL,
refresh_token_expires_at timestamp DEFAULT NULL,
refresh_token_metadata blob DEFAULT NULL,
user_code_value blob DEFAULT NULL,
user_code_issued_at timestamp DEFAULT NULL,
user_code_expires_at timestamp DEFAULT NULL,
user_code_metadata blob DEFAULT NULL,
device_code_value blob DEFAULT NULL,
device_code_issued_at timestamp DEFAULT NULL,
device_code_expires_at timestamp DEFAULT NULL,
device_code_metadata blob DEFAULT NULL,
PRIMARY KEY (id)
);