0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/schemas/tables/logs.sql

12 lines
315 B
MySQL
Raw Normal View History

create table logs
(
id varchar(21) not null,
type varchar(64) not null,
payload jsonb /* @use ArbitraryObject */ not null default '{}'::jsonb,
created_at timestamptz not null default (now()),
primary key (id)
);
create index logs__type on logs (type);
create index logs__created_at on logs (created_at);