0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-20 21:32:31 -05:00
logto/packages/schemas/tables/oidc_clients.sql
2021-07-25 17:40:51 +08:00

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)
);