You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OpenID-Connect-Java-Spring-.../openid-connect-server/db/tables/accesstoken.sql

9 lines
208 B

CREATE TABLE accesstoken (
id VARCHAR(4096),
expiration TIMESTAMP,
tokenType VARCHAR(256),
refresh_token_id VARCHAR(256),
client_id VARCHAR(256),
authentication LONGBLOB,
idTokenString VARCHAR(4096)
);