0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-17 22:04:19 -05:00
logto/packages/schemas/tables/oidc_clients.sql

7 lines
214 B
MySQL
Raw Normal View History

2021-07-05 00:17:40 +08:00
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)
);