mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -05:00
6 lines
214 B
SQL
6 lines
214 B
SQL
create table oidc_clients (
|
|
client_id varchar(128) not null,
|
|
metadata jsonb /* @use OidcClientMetadata */ not null,
|
|
created_at bigint not null default(extract(epoch from now())),
|
|
primary key (client_id)
|
|
);
|