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.
9 lines
208 B
9 lines
208 B
13 years ago
|
CREATE TABLE accesstoken (
|
||
13 years ago
|
id VARCHAR(4096),
|
||
13 years ago
|
expiration TIMESTAMP,
|
||
|
tokenType VARCHAR(256),
|
||
|
refresh_token_id VARCHAR(256),
|
||
|
client_id VARCHAR(256),
|
||
13 years ago
|
authentication LONGBLOB,
|
||
13 years ago
|
idTokenString VARCHAR(4096)
|
||
13 years ago
|
);
|