Fix NPE saving public client

Closes gh-326
This commit is contained in:
Steve Riesenberg
2021-06-25 14:22:48 -05:00
committed by Steve Riesenberg
parent 473dedb9ad
commit 67e62a2f21
3 changed files with 33 additions and 86 deletions

View File

@@ -2,7 +2,7 @@ CREATE TABLE oauth2_registered_client (
id varchar(100) NOT NULL,
client_id varchar(100) NOT NULL,
client_id_issued_at timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL,
client_secret blob NOT NULL,
client_secret varchar(200) DEFAULT NULL,
client_secret_expires_at timestamp DEFAULT NULL,
client_name varchar(200),
client_authentication_methods varchar(1000) NOT NULL,