mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
11 lines
315 B
SQL
11 lines
315 B
SQL
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);
|