mirror of
https://github.com/logto-io/logto.git
synced 2025-03-17 22:31:28 -05:00
refactor(core): adjust access token ttl (#1430)
adjust access token ttl
This commit is contained in:
parent
0240e5cac2
commit
4d7a091d24
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ create table resources (
|
|||
id varchar(21) not null,
|
||||
name text not null,
|
||||
indicator text not null unique, /* resource indicator also used as audience */
|
||||
access_token_ttl bigint not null default(86400), /* expiration value in seconds, default is 24h */
|
||||
access_token_ttl bigint not null default(3600), /* expiration value in seconds, default is 1h */
|
||||
primary key (id)
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue