mirror of
https://github.com/logto-io/logto.git
synced 2025-02-17 22:04:19 -05:00
7 lines
214 B
MySQL
7 lines
214 B
MySQL
|
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)
|
||
|
);
|