mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
15 lines
606 B
SQL
15 lines
606 B
SQL
create table verification_records (
|
|
tenant_id varchar(21) not null
|
|
references tenants (id) on update cascade on delete cascade,
|
|
id varchar(21) not null,
|
|
user_id varchar(21)
|
|
references users (id) on update cascade on delete cascade,
|
|
created_at timestamptz not null default(now()),
|
|
expires_at timestamptz not null,
|
|
/** Use JsonObject here to avoid complex typing, the type will be validated in verification classes. */
|
|
data jsonb /* @use JsonObject */ not null default '{}'::jsonb,
|
|
primary key (id)
|
|
);
|
|
|
|
create index verification_records__id
|
|
on verification_records (tenant_id, id);
|